Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Merge pull request #373 from sigmabeta/android-ui-cleanup
Soften up some of the UI elements on Android
- Loading branch information
Showing
3 changed files
with
30 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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"/> | ||
| android:dividerHeight="1dp" | ||
| tools:listitem="@layout/gamelist_folderbrowser_list_item"/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,20 +1,20 @@ | ||
| <?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" > | ||
|
|
||
| <TextView | ||
| 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> |