Fix list view bugs (mostly Ouya related)

This commit is contained in:
Cameron Gutman
2014-07-04 18:57:03 -07:00
parent 155432b4b8
commit 9e20d25093
8 changed files with 25 additions and 17 deletions

View File

@@ -1,12 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/rowTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:textSize="16sp"
android:background="@drawable/list_view_border"
android:textIsSelectable="false" >
android:layout_height="wrap_content">
<TextView
android:id="@+id/rowTextView"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textIsSelectable="false"
android:textSize="16sp" >
</TextView>
</TextView>
</LinearLayout>