Skip to content

Commit f02220c

Browse files
Fix XML formatting and remove unused namespace
- Remove unused `tools` namespace from `activity_shortcuts_navigation_and_searching.xml`. - Add `tools` namespace to `strings.xml` for Russian and Traditional Chinese to address lint warnings. - Format `fragment_spring_interpolator.xml` for consistency.
1 parent d0a6f38 commit f02220c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<overshootInterpolator xmlns:android="http://schemas.android.com/apk/res/android"
3-
android:tension="1.0"></overshootInterpolator>
3+
android:tension="1.0" />
44

app/src/main/res/layout/activity_shortcuts_navigation_and_searching.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:ads="http://schemas.android.com/apk/res-auto"
44
xmlns:app="http://schemas.android.com/apk/res-auto"
5-
xmlns:tools="http://schemas.android.com/tools"
65
android:layout_width="match_parent"
76
android:layout_height="match_parent">
87

app/src/main/res/values-ru-rRU/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<resources>
2+
<resources xmlns:tools="http://schemas.android.com/tools">
33
<string name="image_view_preview_desc">Предпросмотр изображения</string>
44
<string name="app_short_description">Узнайте, как создавать простые приложения в Android Studio. 📱</string>
55
<string name="notification_update_title">Доступно новое обновление.</string>

app/src/main/res/values-zh-rTW/strings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version='1.0' encoding='utf-8'?>
2-
<resources>
2+
<resources xmlns:tools="http://schemas.android.com/tools">
33
<string name="image_view_preview_desc">圖片檢視預覽</string>
44
<string name="app_short_description">學習如何在 Android Studio 中製作簡單的 Java 應用程式。 📱</string>
55
<string name="notification_update_title">有可用的新更新!</string>

0 commit comments

Comments
 (0)