Simple Notepad Application for Android OS
Revision | 61173b4247cde3eca8fdc3bbf7d42ad312a8bc5f (tree) |
---|---|
Zeit | 2012-08-06 01:03:26 |
Autor | Masahiko, SAWAI <say@user...> |
Commiter | Masahiko, SAWAI |
ic_home と ic_search を修正
@@ -4,17 +4,16 @@ | ||
4 | 4 | !! notepad-app |
5 | 5 | |
6 | 6 | * Theme.Light ベースのテーマを追加 |
7 | -** アイコンが黒背景を前提に作ってあるので白背景用を作成する | |
8 | -*** 白背景 : #333333 で 60% の透過度 | |
9 | -*** 黒背景 : #FFFFFF で 80% の透過度 | |
10 | -*** ic_add.png | |
11 | -*** ic_clear.png | |
12 | -*** ic_delete.png | |
13 | -*** ic_edit.png | |
14 | -*** ic_home.png | |
15 | -*** ic_launcher_notepad.png | |
16 | -*** ic_save.png | |
17 | -*** ic_search.png | |
7 | +** Theme.Notepad.Light を作成 | |
8 | +#** アイコンが黒背景を前提に作ってあるので白背景用を作成する | |
9 | +#*** 白背景 : #333333 で 60% の透過度 | |
10 | +#*** 黒背景 : #FFFFFF で 80% の透過度 | |
11 | +#*** ic_add.png | |
12 | +#*** ic_clear.png | |
13 | +#*** ic_delete.png | |
14 | +#*** ic_edit.png | |
15 | +#*** ic_home.png | |
16 | +#*** ic_search.png | |
18 | 17 | |
19 | 18 | * ノートテンプレート機能 |
20 | 19 | ** 新規ノート作成時のテンプレートを作成、管理する機能 |
@@ -35,6 +34,7 @@ | ||
35 | 34 | ** タイトル(?) |
36 | 35 | |
37 | 36 | * 設定:ノート一覧画面のソート順 |
37 | +* 設定:テーマ選択 | |
38 | 38 | |
39 | 39 | ############################# |
40 | 40 | !! notepad-app-level-11 |
@@ -8,7 +8,7 @@ | ||
8 | 8 | <ImageButton |
9 | 9 | style="@style/actionbar_left_button" |
10 | 10 | android:id="@+id/home_button" |
11 | - android:src="@drawable/ic_home" | |
11 | + android:src="?attr/ic_home" | |
12 | 12 | /> |
13 | 13 | <TextView |
14 | 14 | style="@style/actionbar_title" |
@@ -13,7 +13,7 @@ | ||
13 | 13 | <ImageButton |
14 | 14 | style="@style/actionbar_left_button" |
15 | 15 | android:id="@+id/home_button" |
16 | - android:src="@drawable/ic_home" | |
16 | + android:src="?attr/ic_home" | |
17 | 17 | /> |
18 | 18 | <TextView |
19 | 19 | style="@style/actionbar_title" |
@@ -8,7 +8,7 @@ | ||
8 | 8 | <ImageButton |
9 | 9 | style="@style/actionbar_left_button" |
10 | 10 | android:id="@+id/home_button" |
11 | - android:src="@drawable/ic_home" | |
11 | + android:src="?attr/ic_home" | |
12 | 12 | /> |
13 | 13 | <!-- View Mode --> |
14 | 14 | <TextView |
@@ -20,7 +20,7 @@ | ||
20 | 20 | <ImageButton |
21 | 21 | style="@style/actionbar_right_button" |
22 | 22 | android:id="@+id/search_button" |
23 | - android:src="@drawable/ic_search" | |
23 | + android:src="?attr/ic_search" | |
24 | 24 | /> |
25 | 25 | <ImageButton |
26 | 26 | style="@style/actionbar_right_button" |
@@ -6,5 +6,7 @@ | ||
6 | 6 | <attr name="ic_clear" format="reference" /> |
7 | 7 | <attr name="ic_delete" format="reference" /> |
8 | 8 | <attr name="ic_edit" format="reference" /> |
9 | + <attr name="ic_home" format="reference" /> | |
10 | + <attr name="ic_search" format="reference" /> | |
9 | 11 | </declare-styleable> |
10 | 12 | </resources> |
\ No newline at end of file |
@@ -17,6 +17,8 @@ | ||
17 | 17 | <item name="ic_clear">@drawable/ic_clear_dark</item> |
18 | 18 | <item name="ic_delete">@drawable/ic_delete_dark</item> |
19 | 19 | <item name="ic_edit">@drawable/ic_edit_dark</item> |
20 | + <item name="ic_home">@drawable/ic_home_dark</item> | |
21 | + <item name="ic_search">@drawable/ic_search_dark</item> | |
20 | 22 | <!--<item name="actionBarTitleStyle">@style/Widget.Black.ActionBarTitle</item>--> |
21 | 23 | </style> |
22 | 24 |
@@ -26,6 +28,8 @@ | ||
26 | 28 | <item name="ic_clear">@drawable/ic_clear_light</item> |
27 | 29 | <item name="ic_delete">@drawable/ic_delete_light</item> |
28 | 30 | <item name="ic_edit">@drawable/ic_edit_light</item> |
31 | + <item name="ic_home">@drawable/ic_home_light</item> | |
32 | + <item name="ic_search">@drawable/ic_search_light</item> | |
29 | 33 | <!--<item name="actionBarTitleStyle">@style/Widget.Light.ActionBarTitle</item>--> |
30 | 34 | </style> |
31 | 35 | </resources> |