• R/O
  • HTTP
  • SSH
  • HTTPS

提交

标签
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Simple Notepad Application for Android OS


Commit MetaInfo

修订版ef00c74881908cf3f2b063b710e9f4a171b34263 (tree)
时间2019-05-05 00:10:01
作者Masahiko, SAWAI <say@user...>
CommiterMasahiko, SAWAI

Log Message

Added content description to ImageView.

更改概述

差异

--- a/notepad-app/src/main/res/layout/delete_notes_activity.xml
+++ b/notepad-app/src/main/res/layout/delete_notes_activity.xml
@@ -9,6 +9,7 @@
99 style="@style/actionbar_left_button"
1010 android:id="@+id/home_button"
1111 android:src="?attr/ic_home"
12+ android:contentDescription="@string/home"
1213 />
1314 <TextView
1415 style="@style/actionbar_title"
@@ -18,6 +19,7 @@
1819 style="@style/actionbar_right_button"
1920 android:id="@+id/delete_note_button"
2021 android:src="?attr/ic_delete"
22+ android:contentDescription="@string/delete_note"
2123 />
2224 </LinearLayout>
2325
--- a/notepad-app/src/main/res/layout/edit_text_activity.xml
+++ b/notepad-app/src/main/res/layout/edit_text_activity.xml
@@ -14,6 +14,7 @@
1414 style="@style/actionbar_left_button"
1515 android:id="@+id/cancel_button"
1616 android:src="?attr/ic_clear"
17+ android:contentDescription="@string/clear"
1718 />
1819 <TextView
1920 style="@style/actionbar_title"
@@ -23,6 +24,7 @@
2324 style="@style/actionbar_right_button"
2425 android:id="@+id/ok_button"
2526 android:src="?attr/ic_ok"
27+ android:contentDescription="@string/ok"
2628 />
2729 </LinearLayout>
2830
--- a/notepad-app/src/main/res/layout/note_detail_activity.xml
+++ b/notepad-app/src/main/res/layout/note_detail_activity.xml
@@ -14,6 +14,7 @@
1414 style="@style/actionbar_left_button"
1515 android:id="@+id/home_button"
1616 android:src="?attr/ic_home"
17+ android:contentDescription="@string/home"
1718 />
1819 <TextView
1920 style="@style/actionbar_title"
@@ -24,16 +25,19 @@
2425 style="@style/actionbar_right_button"
2526 android:id="@+id/add_new_note_button"
2627 android:src="?attr/ic_add"
28+ android:contentDescription="@string/new_note"
2729 />
2830 <ImageButton
2931 style="@style/actionbar_right_button"
3032 android:id="@+id/delete_note_button"
3133 android:src="?attr/ic_delete"
34+ android:contentDescription="@string/delete_note"
3235 />
3336 <ImageButton
3437 style="@style/actionbar_right_button"
3538 android:id="@+id/edit_note_button"
3639 android:src="?attr/ic_edit"
40+ android:contentDescription="@string/edit_note"
3741 />
3842
3943 </LinearLayout>
@@ -48,6 +52,7 @@
4852 style="@style/actionbar_left_button"
4953 android:id="@+id/cancel_find_word_button"
5054 android:src="?attr/ic_ok"
55+ android:contentDescription="@string/ok"
5156 />
5257 <EditText
5358 style="@style/actionbar_edittext"
@@ -61,11 +66,13 @@
6166 style="@style/actionbar_right_button"
6267 android:id="@+id/find_prev_button"
6368 android:src="?attr/ic_prev"
69+ android:contentDescription="@string/prev"
6470 />
6571 <ImageButton
6672 style="@style/actionbar_right_button"
6773 android:id="@+id/find_next_button"
6874 android:src="?attr/ic_next"
75+ android:contentDescription="@string/next"
6976 />
7077 </LinearLayout>
7178
--- a/notepad-app/src/main/res/layout/note_template_detail_activity.xml
+++ b/notepad-app/src/main/res/layout/note_template_detail_activity.xml
@@ -14,6 +14,7 @@
1414 style="@style/actionbar_left_button"
1515 android:id="@+id/home_button"
1616 android:src="?attr/ic_home"
17+ android:contentDescription="@string/home"
1718 />
1819 <TextView
1920 style="@style/actionbar_title"
--- a/notepad-app/src/main/res/layout/note_template_list_activity.xml
+++ b/notepad-app/src/main/res/layout/note_template_list_activity.xml
@@ -10,6 +10,7 @@
1010 style="@style/actionbar_left_button"
1111 android:id="@+id/home_button"
1212 android:src="?attr/ic_home"
13+ android:contentDescription="@string/home"
1314 />
1415 <TextView
1516 style="@style/actionbar_title"
@@ -20,6 +21,7 @@
2021 style="@style/actionbar_right_button"
2122 android:id="@+id/add_new_note_template_button"
2223 android:src="?attr/ic_add"
24+ android:contentDescription="@string/new_note"
2325 />
2426 </LinearLayout>
2527
--- a/notepad-app/src/main/res/layout/notepad_activity.xml
+++ b/notepad-app/src/main/res/layout/notepad_activity.xml
@@ -13,6 +13,7 @@
1313 style="@style/actionbar_left_button"
1414 android:id="@+id/home_button"
1515 android:src="?attr/ic_home"
16+ android:contentDescription="@string/home"
1617 />
1718 <TextView
1819 style="@style/actionbar_title"
@@ -23,11 +24,13 @@
2324 style="@style/actionbar_right_button"
2425 android:id="@+id/search_button"
2526 android:src="?attr/ic_search"
27+ android:contentDescription="@string/search_note"
2628 />
2729 <ImageButton
2830 style="@style/actionbar_right_button"
2931 android:id="@+id/add_new_note_button"
3032 android:src="?attr/ic_add"
33+ android:contentDescription="@string/new_note"
3134 />
3235
3336 </LinearLayout>
--- a/notepad-app/src/main/res/values-ja/strings.xml
+++ b/notepad-app/src/main/res/values-ja/strings.xml
@@ -3,6 +3,12 @@
33 <resources>
44 <string name="app_name">Notepad</string>
55
6+ <string name="home">ホーム</string>
7+ <string name="ok">OK</string>
8+ <string name="clear">消去</string>
9+ <string name="prev">前へ</string>
10+ <string name="next">次へ</string>
11+
612 <string name="quit">終了</string>
713 <string name="no_data">データがありません</string>
814
--- a/notepad-app/src/main/res/values/strings.xml
+++ b/notepad-app/src/main/res/values/strings.xml
@@ -3,6 +3,12 @@
33 <resources>
44 <string name="app_name">Notepad</string>
55
6+ <string name="home">Home</string>
7+ <string name="ok">OK</string>
8+ <string name="clear">Clear</string>
9+ <string name="prev">Previous</string>
10+ <string name="next">Next</string>
11+
612 <string name="quit">Quit</string>
713 <string name="no_data">No Data</string>
814