i_edit_item.xml
1.25 KB
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:focusable="false"
android:focusableInTouchMode="false"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="120dp"
android:layout_height="wrap_content"
android:text="@string/i_other"
android:textSize="24sp"
android:id="@+id/name_tv"/>
<EditText
android:focusable="false"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_height="wrap_content"
android:textSize="24sp"
android:imeOptions="actionDone"
android:id="@+id/edit_et"/>
<Button android:layout_width="wrap_content"
android:text="@string/i_edit"
android:focusable="true"
android:textSize="24sp"
android:focusableInTouchMode="true"
android:layout_height="wrap_content"
android:id="@+id/edit_btn"/>
</LinearLayout>