remove debug clause and smaller fonts
This commit is contained in:
parent
15d373f273
commit
d8603f07be
2 changed files with 3 additions and 3 deletions
|
@ -35,7 +35,7 @@ public class MainMenuActivity extends MenuListActivity {
|
||||||
protected String[] getElements() {
|
protected String[] getElements() {
|
||||||
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
|
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
|
||||||
|
|
||||||
if(false && !sharedPreferences.getBoolean("wearcontrol", false)){
|
if(!sharedPreferences.getBoolean("wearcontrol", false)){
|
||||||
return new String[] {
|
return new String[] {
|
||||||
"Settings",
|
"Settings",
|
||||||
"Re-Sync"};
|
"Re-Sync"};
|
||||||
|
|
|
@ -23,14 +23,14 @@
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:text="title"
|
android:text="title"
|
||||||
android:textAppearance="@style/TextAppearance.Wearable.Large"
|
android:textAppearance="@style/TextAppearance.Wearable.Medium"
|
||||||
android:textColor="@color/white" />
|
android:textColor="@color/white" />
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/message"
|
android:id="@+id/message"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:text="message"
|
android:text="message"
|
||||||
android:textAppearance="@style/TextAppearance.Wearable.Medium"
|
android:textAppearance="@style/TextAppearance.Wearable.Small"
|
||||||
android:textColor="@color/white" />
|
android:textColor="@color/white" />
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue