Simple Notepad Application for Android OS
Revision | 8f12a215350a5ef400cb8f0825935867c3a5c23b (tree) |
---|---|
Zeit | 2012-08-02 18:00:30 |
Autor | Masahiko, SAWAI <say@user...> |
Commiter | Masahiko, SAWAI |
PreferenceUtils.java を NotepadPreferenceUtils.java に名前変更
@@ -111,7 +111,7 @@ public class NotepadActivity extends Activity implements NotepadConstants, | ||
111 | 111 | Resources resources = getResources(); |
112 | 112 | layoutSinglePaneValue = resources.getString(R.string.note_list_layout_single_value); |
113 | 113 | layoutWideTwoPaneValue = resources.getString(R.string.note_list_layout_wide_two_value); |
114 | - layout = PreferenceUtils.getNoteListLayout(this); | |
114 | + layout = NotepadPreferenceUtils.getNoteListLayout(this); | |
115 | 115 | |
116 | 116 | // setup layout transition |
117 | 117 | LayoutTransition layoutTransition = new LayoutTransition(); |
@@ -34,7 +34,7 @@ import org.routine_work.utils.Log; | ||
34 | 34 | * |
35 | 35 | * @author Masahiko, SAWAI <masahiko.sawai@gmail.com> |
36 | 36 | */ |
37 | -public class PreferenceUtils | |
37 | +public class NotepadPreferenceUtils | |
38 | 38 | { |
39 | 39 | private static final String LOG_TAG = "simple-notepad"; |
40 | 40 |