到目前为止,我的Android应用程序与我使用TableLayout以构建一些数据的方式相去甚远。但是,当我在行中添加EditText对象时,我无法再键入它。
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginBottom="10dp"
android:layout_marginTop="10dp"
android:gravity="center">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ellipsize="marquee"
android:singleLine="true"
android:text="Does the title match?" />
<CheckBox
android:id="@+id/checktextview_doestitlematch_confirm_item_specs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="false"
android:duplicateParentState="true"
android:focusable="false"
android:onClick="toggleTitle" />
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textPersonName"
android:text="Name" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent" />
</TableLayout>
我看过,人们主要对ListViews有这个问题。我尝试过一些建议,但碰到了一堵砖墙。感谢。
答案 0 :(得分:0)
从表格布局中删除属性android:descendantFocusability =&#34; blocksDescendants&#34;。通过该属性,孩子们无法专注于