我有以下布局:
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:stretchColumns="*">
<TableRow
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true"
android:descendantFocusability="beforeDescendants">
<TextView
android:text="Login:"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<EditText
android:id="@+id/password"
android:background="@null"
android:duplicateParentState="true"
android:inputType="text"
android:maxLines="1"
android:singleLine="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</TableRow>
</TableLayout>
我EditText
占据屏幕宽度的一半,我希望它在TableRow
点击时获得焦点。我该如何设置呢?有没有可能没有任何额外的代码?