晚上好(来自瑞典)!我正在构建一个基于几个复合视图的GUI(一个包含一个或多个视图的扩展布局),我似乎无法按顺序获得焦点流。我主要想让键盘上的“下一个”按钮正常工作。当前按下它除了播放咔嗒声之外什么也不做。我试过了:
android:nextFocusRight="@+id/ipDecimal"
android:nextFocusDown="@+id/ipDecimal"
设置(在这里和那里)
android:focusable="true"
我做错了什么?我目前的目标是让焦点从第一个IntegerPicker流到第二个IntegerPicker。
以下是我正在尝试使用的2个组件的布局(两个组件都包含扩展的FrameLayout):
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center"
android:focusable="true" >
<com.SverkerSbrg.Spendo.Graphics.InsertTransaction.IntegerPicker
android:id="@+id/ipInteger"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
custom:NumberSize="40"
custom:TextAlignRight="true"
android:focusable="true"
custom:maxNrOfDigits="3"
android:nextFocusRight="@+id/ipDecimal"
android:nextFocusDown="@+id/ipDecimal">
<requestFocus />
</com.SverkerSbrg.Spendo.Graphics.InsertTransaction.IntegerPicker>
<TextView
android:id="@+id/tvDot"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:text="."
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="30sp"
tools:ignore="HardcodedText" />
<com.SverkerSbrg.Spendo.Graphics.InsertTransaction.IntegerPicker
android:id="@+id/ipDecimal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:focusable="true"
custom:NumberSize="20"
custom:TextAlignRight="false"
custom:maxNrOfDigits="2" >
</com.SverkerSbrg.Spendo.Graphics.InsertTransaction.IntegerPicker>
<TextView
android:id="@+id/tvSpace"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"/>
<com.SverkerSbrg.Spendo.Graphics.InsertTransaction.CurrencyPicker
android:id="@+id/icCurrency"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
custom:textSize="20"
android:layout_gravity="bottom|center_horizontal">
</com.SverkerSbrg.Spendo.Graphics.InsertTransaction.CurrencyPicker>
</merge>
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
>
<EditText
android:id="@+id/etInteger"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:inputType="number"
android:background="#00000000"
android:selectAllOnFocus="true"
android:focusable="true"
android:hint="00">
</EditText>
</merge>
答案 0 :(得分:3)
经过几个小时的尝试使用不同的修复程序令人沮丧,例如将焦点传递到右视图的不可见的EditTexts。
如果发现我可以获得所需的结果,请从键盘上的下一个按钮开始捕捉事件。
这是通过OnEditorActionListener完成的。