27 lines
860 B
XML
27 lines
860 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<CheckBox
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/ringer_enabled_checkbox"
|
|
android:focusable="false"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@id/android:id/text1"
|
|
android:layout_toRightOf="@id/ringer_enabled_checkbox"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:gravity="center_vertical"
|
|
android:paddingLeft="6dip"
|
|
android:paddingRight="6dip"
|
|
/>
|
|
|
|
</RelativeLayout> |