Simple Notepad Application for Android OS
Revision | c8b771193fc2ece44eb5420e93b73cd2d0956ec5 (tree) |
---|---|
Time | 2019-05-05 01:31:33 |
Author | Masahiko, SAWAI <say@user...> |
Commiter | Masahiko, SAWAI |
Added content description to ImageView.
@@ -45,6 +45,7 @@ | ||
45 | 45 | style="@style/actionbar_left_button" |
46 | 46 | android:id="@+id/cancel_search_button" |
47 | 47 | android:src="?attr/ic_ok" |
48 | + android:contentDescription="@string/ok" | |
48 | 49 | /> |
49 | 50 | |
50 | 51 | <EditText |
@@ -58,6 +59,7 @@ | ||
58 | 59 | style="@style/actionbar_right_button" |
59 | 60 | android:id="@+id/clear_search_word_button" |
60 | 61 | android:src="?attr/ic_clear" |
62 | + android:contentDescription="@string/clear" | |
61 | 63 | /> |
62 | 64 | </LinearLayout> |
63 | 65 |
@@ -5,7 +5,9 @@ | ||
5 | 5 | |
6 | 6 | <string name="home">ホーム</string> |
7 | 7 | <string name="ok">OK</string> |
8 | + <string name="close">閉じる</string> | |
8 | 9 | <string name="clear">消去</string> |
10 | + <string name="cancel">キャンセル</string> | |
9 | 11 | <string name="prev">前へ</string> |
10 | 12 | <string name="next">次へ</string> |
11 | 13 |
@@ -5,7 +5,9 @@ | ||
5 | 5 | |
6 | 6 | <string name="home">Home</string> |
7 | 7 | <string name="ok">OK</string> |
8 | + <string name="close">Close</string> | |
8 | 9 | <string name="clear">Clear</string> |
10 | + <string name="cancel">Cancel</string> | |
9 | 11 | <string name="prev">Previous</string> |
10 | 12 | <string name="next">Next</string> |
11 | 13 |