3

晚上好(来自瑞典)!我正在构建一个基于几个复合视图(包含一个或多个视图的扩展布局)的 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>
4

1 回答 1

3

经过数小时尝试不同的修复令人沮丧,例如将焦点传递到正确视图的不可见 EditTexts。

如果发现我可以得到想要的结果,请从键盘上的下一个按钮购买捕捉事件。

这是通过 OnEditorActionListener 完成的。

于 2013-04-18T21:24:03.407 回答