From http://www.jwz.org/xscreensaver/xscreensaver-5.34.tar.gz
[xscreensaver] / android / project / xscreensaver / res / layout / slider_preference_dialog.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright 2012 Jay Weisskopf
4
5 Licensed under the MIT License (see LICENSE.txt)
6 -->
7 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
8     android:id="@+id/slider_preference_layout"
9     android:layout_width="wrap_content"
10     android:layout_height="wrap_content"
11     android:orientation="vertical"
12     android:paddingBottom="8dip"
13     android:paddingLeft="16dip"
14     android:paddingRight="16dip"
15     android:paddingTop="8dip" >
16
17     <TextView
18         android:id="@+android:id/message"
19         android:layout_width="wrap_content"
20         android:layout_height="wrap_content" />
21
22     <SeekBar
23         android:id="@+id/slider_preference_seekbar"
24         android:layout_width="fill_parent"
25         android:layout_height="wrap_content"
26         android:paddingBottom="12dip"
27         android:paddingTop="12dip" />
28
29 </LinearLayout>