Files
location_ringer/LocationRinger/res/layout/ringtone_fragment.xml
Ricky Barrette 764e10ba17 Ringtone Fragment Edittext is no longer focus-able
this enables onclick to be call after one the first click

closes #78

Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
2012-05-25 23:18:23 -04:00

36 lines
1.2 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" >
<TextView
android:id="@+id/label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="@android:drawable/title_bar"
android:text="@string/ringtone_options"
android:textColor="#FFFFFF" />
<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>