vtm-app: revive / update with latest VTM, closes #90
This commit is contained in:
61
vtm-app/res/layout/seek_bar_preference.xml
Normal file
61
vtm-app/res/layout/seek_bar_preference.xml
Normal file
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:id="@android:id/widget_frame"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingLeft="15dp"
|
||||
android:paddingTop="5dp"
|
||||
android:paddingRight="10dp"
|
||||
android:paddingBottom="5dp">
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/title"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentTop="true"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:textSize="22dp"
|
||||
android:typeface="sans"
|
||||
android:textStyle="normal"
|
||||
android:textColor="#ffffff"></TextView>
|
||||
|
||||
<TextView
|
||||
android:id="@android:id/summary"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@android:id/title"></TextView>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/seekBarPrefUnitsRight"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_below="@android:id/title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"></TextView>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/seekBarPrefValue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_toLeftOf="@id/seekBarPrefUnitsRight"
|
||||
android:layout_below="@android:id/title"
|
||||
android:gravity="right"></TextView>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/seekBarPrefUnitsLeft"
|
||||
android:layout_below="@android:id/title"
|
||||
android:layout_toLeftOf="@id/seekBarPrefValue"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"></TextView>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/seekBarPrefBarContainer"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:orientation="horizontal"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@android:id/summary"></LinearLayout>
|
||||
|
||||
</RelativeLayout>
|
||||
Reference in New Issue
Block a user