diff options
| author | Eder Bastos <bastos.eder@gmail.com> | 2014-05-15 18:06:23 -0400 |
|---|---|---|
| committer | Eder Bastos <bastos.eder@gmail.com> | 2014-05-15 18:06:23 -0400 |
| commit | 08bb79ccb3387c4e69ba3f40e5c1b29365e7f07b (patch) | |
| tree | 1c57238182b54c6a362819d612cdd701382af061 /Source/Android/res | |
| parent | 36720e6822a8049c34ff1bfe4ea24e47f85847ca (diff) | |
Soften up some of the UI elements.
Diffstat (limited to 'Source/Android/res')
| -rw-r--r-- | Source/Android/res/layout/gamelist_folderbrowser_list_item.xml | 14 | ||||
| -rw-r--r-- | Source/Android/res/layout/gamelist_listview.xml | 6 | ||||
| -rw-r--r-- | Source/Android/res/layout/sidemenu.xml | 12 |
3 files changed, 23 insertions, 9 deletions
diff --git a/Source/Android/res/layout/gamelist_folderbrowser_list_item.xml b/Source/Android/res/layout/gamelist_folderbrowser_list_item.xml index e386000c79..7357dbd884 100644 --- a/Source/Android/res/layout/gamelist_folderbrowser_list_item.xml +++ b/Source/Android/res/layout/gamelist_folderbrowser_list_item.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="fill_parent" android:layout_height="?android:attr/listPreferredItemHeight" android:padding="3dp"> @@ -9,6 +10,8 @@ android:layout_width="wrap_content" android:layout_height="fill_parent" + tools:src="@drawable/ic_launcher" + android:layout_alignParentTop="true" android:layout_alignParentBottom="true" android:layout_marginRight="6dip"/> @@ -18,6 +21,9 @@ android:layout_width="fill_parent" android:layout_height="26dip" + tools:text="File Size: 1459978240" + android:textColor="#aaaaaa" + android:layout_toRightOf="@id/ListItemIcon" android:layout_alignParentBottom="true" android:layout_alignParentRight="true" @@ -30,6 +36,12 @@ android:layout_width="fill_parent" android:layout_height="wrap_content" + tools:text="Name of Game" + + android:fontFamily="sans-serif-light" + android:textSize="20sp" + android:textColor="#555555" + android:layout_toRightOf="@id/ListItemIcon" android:layout_alignParentRight="true" android:layout_alignParentTop="true" @@ -37,6 +49,6 @@ android:layout_alignWithParentIfMissing="true" android:gravity="center_vertical" - android:textStyle="bold" /> + /> </RelativeLayout> diff --git a/Source/Android/res/layout/gamelist_listview.xml b/Source/Android/res/layout/gamelist_listview.xml index bbd1a43c07..4850de4912 100644 --- a/Source/Android/res/layout/gamelist_listview.xml +++ b/Source/Android/res/layout/gamelist_listview.xml @@ -1,6 +1,8 @@ <ListView xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/gamelist" + xmlns:tools="http://schemas.android.com/tools" + android:id="@+id/gamelist" android:layout_width="match_parent" android:layout_height="match_parent" android:choiceMode="singleChoice" - android:dividerHeight="1dp"/>
\ No newline at end of file + android:dividerHeight="1dp" + tools:listitem="@layout/gamelist_folderbrowser_list_item"/>
\ No newline at end of file diff --git a/Source/Android/res/layout/sidemenu.xml b/Source/Android/res/layout/sidemenu.xml index 281e9119c5..f690232e8b 100644 --- a/Source/Android/res/layout/sidemenu.xml +++ b/Source/Android/res/layout/sidemenu.xml @@ -1,7 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:tools="http://schemas.android.com/tools" android:layout_width="wrap_content" - android:layout_height="match_parent" + android:layout_height="48dp" android:gravity="left" android:orientation="vertical" > @@ -9,12 +10,11 @@ android:id="@+id/SideMenuTitle" android:layout_width="wrap_content" android:layout_height="wrap_content" - android:layout_marginLeft="5dip" - android:layout_marginTop="5dip" + android:layout_margin="4dp" android:singleLine="true" - android:text="@+id/TextView01" - android:textAppearance="?android:attr/textAppearanceLarge" - android:textStyle="bold" + tools:text="Menu Option" + android:textAppearance="?android:attr/textAppearanceLarge" + android:fontFamily="sans-serif-light" android:textColor="#FFFFFF" /> </LinearLayout> |
