• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
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

Revisionc8b771193fc2ece44eb5420e93b73cd2d0956ec5 (tree)
Time2019-05-05 01:31:33
AuthorMasahiko, SAWAI <say@user...>
CommiterMasahiko, SAWAI

Log Message

Added content description to ImageView.

Change Summary

Incremental Difference

--- a/notepad-app/src/main/res/layout/notepad_activity.xml
+++ b/notepad-app/src/main/res/layout/notepad_activity.xml
@@ -45,6 +45,7 @@
4545 style="@style/actionbar_left_button"
4646 android:id="@+id/cancel_search_button"
4747 android:src="?attr/ic_ok"
48+ android:contentDescription="@string/ok"
4849 />
4950
5051 <EditText
@@ -58,6 +59,7 @@
5859 style="@style/actionbar_right_button"
5960 android:id="@+id/clear_search_word_button"
6061 android:src="?attr/ic_clear"
62+ android:contentDescription="@string/clear"
6163 />
6264 </LinearLayout>
6365
--- a/notepad-app/src/main/res/values-ja/strings.xml
+++ b/notepad-app/src/main/res/values-ja/strings.xml
@@ -5,7 +5,9 @@
55
66 <string name="home">ホーム</string>
77 <string name="ok">OK</string>
8+ <string name="close">閉じる</string>
89 <string name="clear">消去</string>
10+ <string name="cancel">キャンセル</string>
911 <string name="prev">前へ</string>
1012 <string name="next">次へ</string>
1113
--- a/notepad-app/src/main/res/values/strings.xml
+++ b/notepad-app/src/main/res/values/strings.xml
@@ -5,7 +5,9 @@
55
66 <string name="home">Home</string>
77 <string name="ok">OK</string>
8+ <string name="close">Close</string>
89 <string name="clear">Clear</string>
10+ <string name="cancel">Cancel</string>
911 <string name="prev">Previous</string>
1012 <string name="next">Next</string>
1113