Files
location_ringer/LocationRinger/res/layout/ringtone_fragment.xml

35 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"
android:id="@+id/ringtone_fragment">
<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:focusable="false"
android:inputType="none" />
<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>