Files
location_ringer/LocationRinger/res/layout/ringer_about_fragment.xml
Ricky Barrette 8092e5d4c5 Enter to next.
In the about section of the ringer info activity, the keyboard now
displays "next" instead of enter while editing the ringer's name

closes #77

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

47 lines
1.7 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="match_parent"
android:orientation="vertical" >
<ToggleButton
android:id="@+id/ringer_enabled"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textOff="@string/disable"
android:textOn="@string/enable" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="@android:drawable/title_bar"
android:text="@string/ringer_name"
android:textColor="#FFFFFF" />
<view
android:id="@+id/ringer_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
class="com.TwentyCodes.android.LocationRinger.ui.fragments.AboutRingerFragment$ListeningEditText"
android:capitalize="words"
android:imeOptions="actionNext"
android:singleLine="true" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dip"
android:background="@android:drawable/title_bar"
android:text="@string/ringer_description"
android:textColor="#FFFFFF" />
<view
android:id="@+id/ringer_description"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.TwentyCodes.android.LocationRinger.ui.fragments.AboutRingerFragment$ListeningEditText"
android:capitalize="sentences"
android:inputType="textMultiLine" />
</LinearLayout>