fragment to use the new feature title bar. I also deleted list.xml because it is no longer used. Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
34 lines
1.1 KiB
XML
34 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<include
|
|
android:id="@+id/title_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dip"
|
|
layout="@layout/feature_title_bar" />
|
|
|
|
<EditText
|
|
android:id="@+id/ringtone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:cursorVisible="false"
|
|
android:editable="false"
|
|
android:focusable="false" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/volume" />
|
|
|
|
<SeekBar
|
|
android:id="@+id/ringtone_volume"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20dip"
|
|
android:layout_marginRight="20dip" />
|
|
|
|
</LinearLayout> |