2EditTextの右側にImageButtonが必要です
私が試してみました
RelativeLayout
:しかし、ImageView layout_height="match_parent"
は機能しません
LinearLayout
:しかし、EditTextによって押されない限り、ボタンを右側に配置することはできません。LinearLayoutLayoutDirection="rtl"
は機能した可能性がありますが、もう存在しません
編集:
幅/高さの特定の値を使用したくない
私はこれを持っています私は今のところ高さ90dpを置きます、しかし私はそこにそれを望んでいません
<RelativeLayout
android:id="@+id/login_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp" >
<EditText
android:id="@+id/username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/username"
android:layout_toLeftOf="@id/login"
android:inputType="text"
android:gravity="center_horizontal" />
<EditText
android:id="@+id/password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/password"
android:layout_below="@id/username"
android:layout_toLeftOf="@id/login"
android:inputType="textPassword"
android:gravity="center_horizontal" />
<!-- TODO: FIX android:layout_height="match_parent" -->
<ImageButton
android:id="@+id/login"
android:layout_width="wrap_content"
android:layout_height="90dp"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:contentDescription="@string/login"
android:scaleType="fitCenter"
android:src="@drawable/login_button" />
</RelativeLayout>