Fix transparent background for settings on tablets
This commit is contained in:
parent
cc864fe244
commit
834d5fc74b
2 changed files with 32 additions and 0 deletions
16
res/layout-sw533dp-land/settings.xml
Normal file
16
res/layout-sw533dp-land/settings.xml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/topLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@android:color/black">
|
||||||
|
|
||||||
|
<ListView
|
||||||
|
android:id="@+id/list"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:drawSelectorOnTop="false"
|
||||||
|
android:cacheColorHint="@color/transparent"
|
||||||
|
android:scrollbarAlwaysDrawVerticalTrack="true" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
16
res/layout-sw720dp-land/settings.xml
Normal file
16
res/layout-sw720dp-land/settings.xml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:id="@+id/topLayout"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@android:color/black">
|
||||||
|
|
||||||
|
<ListView
|
||||||
|
android:id="@+id/list"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:drawSelectorOnTop="false"
|
||||||
|
android:cacheColorHint="@color/transparent"
|
||||||
|
android:scrollbarAlwaysDrawVerticalTrack="true" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
Loading…
Reference in a new issue