我创建了一个包含我的标签和editText的简单布局。此布局包含多次创建表单。
但是用这种方法" nextFocus"功能无法正常工作,我无法找到解决方案。我需要给出下一个editText的id,但因为它在include布局中,所以id与当前的editText相同。
他们是通过仅使用xml解决方案实现这一目标的吗?我特别想到数据绑定。
这是我的布局:
包含布局:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="viewModel"
type="viewModels.StringDataTypeViewModel"/>
<variable
name="nextFocus"
type="Integer"/>
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:orientation="horizontal"
android:gravity="center_vertical">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
tools:text="Nom de famille : "
android:text="@{viewModel.label}"
android:singleLine="true"
android:ellipsize="end"/>
<EditText android:id="@+id/value"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="@dimen/patient_detail_edittext_text_size"
android:inputType="textPersonName"
android:ellipsize="end"
tools:text="Dupont"
android:text="@={viewModel.value}"
android:textColor="@android:color/widget_edittext_dark"
android:clickable="@{viewModel.editable}"
android:cursorVisible="@{viewModel.editable}"
android:focusable="@{viewModel.editable}"
android:focusableInTouchMode="@{viewModel.editable}"
android:background="@{viewModel.editable ? @android:drawable/edit_text : @drawable/empty_drawable}"
android:nextFocusForward="@id/value"/>
</LinearLayout>
表单布局:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="@{viewModel.editable ? View.VISIBLE: View.GONE}">
<include layout="@layout/string_data_type_layout"
app:viewModel="@{viewModel.familyNameViewModel}" />
<include layout="@layout/string_data_type_layout"
app:viewModel="@{viewModel.givenNameViewModel}" />
<include layout="@layout/string_data_type_layout"
app:viewModel="@{viewModel.patientCodeViewModel}" />
<include layout="@layout/string_data_type_layout"
app:viewModel="@{viewModel.addressViewModel}" />
</LinearLayout>
答案 0 :(得分:1)
第1步:为全部您的 include 元素
提供唯一的ID<include android:id="@+id/edit_text_1"
... />
<include android:id="@+id/edit_text_2"
... />
第2步:将这些属性添加到您的包含布局xml的 root (在您的情况下为LinearLayout)
<LinearLayout
android:descendantFocusability="afterDescendants"
android:focusableInTouchMode="true"
... />
第3步:在所有包含元素中使用第1步中定义的ID(根据所需的导航)
<include android:id="@+id/edit_text_1"
app:nextFocus="@{@id/edit_text_2}"
... />
干杯!