我正在尝试使用嵌套在ListView中的EditText视图构建表单。 ListView和EditText之间有几层RelativeLayout和LinearLayout对象,但是根据我的阅读,这不应该是一个问题。
我已经尝试了所有我能想到的东西。我在AndroidManifest中为我的活动设置了android:windowSoftInputMode="adjustPan"
,我也为我的ListView设置了android:descendantFocusability="beforeDescendants"
。我甚至为ListView和EditText之间的所有布局对象设置了它。但是,这似乎都不起作用。
我遇到的主要问题是软键盘没有出现,即使我双击文本字段来提取编辑选项,我仍然无法在EditText区域输入任何内容。我刚刚使用错误的对象控件来解决这个问题吗?
这是我的ListView对象的布局代码。
<ListView
android:id="@+id/FormlistView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="beforeDescendants"
style="@style/KelFormListView" />
这是我的form_list_item.xml文件的布局代码。这是表单列表中显示的项目。
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="120dp"
android:descendantFocusability="beforeDescendants">
<!-- Top Layout -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:weightSum="10"
android:descendantFocusability="beforeDescendants"
android:id="@+id/TopLayout">
<TextView
android:id="@+id/TitleTextView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="7"
android:gravity="center_vertical"
android:text="Headling Rent (pa)"
android:textSize="16dp"
style="@style/KelFormListItemLabel" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:weightSum="2"
android:descendantFocusability="beforeDescendants"
android:background="@color/formListItemValueBackgroundColor">
<ImageView
android:id="@+id/CurrencyIconView"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_weight="0"
android:src="@drawable/icon_currency_pound"
android:layout_gravity="center_vertical"
android:layout_marginLeft="5dp" />
<EditText
android:id="@+id/ValueTextView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:gravity="right|center_vertical"
android:text="20,000"
android:textSize="16dp"
android:inputType="number"
android:focusableInTouchMode="true"
android:editable="true"
style="@style/KelFormListItemValue"/>
</LinearLayout>
</LinearLayout>
<!-- Bottom Layout -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="60dp"
android:weightSum="10"
android:id="@+id/BottomLayout"
android:descendantFocusability="beforeDescendants"
android:layout_below="@+id/TopLayout">
<TextView
android:id="@+id/BottomTitleTextView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="7"
android:gravity="center_vertical"
android:text="Headling Rent (pa)"
android:textSize="16dp"
style="@style/KelFormListItemLabel" />
<LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
android:weightSum="2"
android:descendantFocusability="beforeDescendants"
android:background="@color/formListItemValueBackgroundColor">
<ImageView
android:id="@+id/BottomCurrencyIconView"
android:layout_width="22dp"
android:layout_height="22dp"
android:layout_weight="0"
android:src="@drawable/icon_currency_pound"
android:layout_gravity="center_vertical"
android:layout_marginLeft="5dp" />
<EditText
android:id="@+id/BottomValueTextView"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
android:gravity="right|center_vertical"
android:text="20,000"
android:textSize="16dp"
android:inputType="number"
android:focusableInTouchMode="true"
android:editable="true"
style="@style/KelFormListItemValue"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:0)
好的,找出了我自己的问题。主要问题与我的任何代码都没有任何关系。问题实际上是模拟器的自我。在Android ADV中创建新的虚拟设备时,会出现一个名为&#34;启用键盘&#34;的设置,或者这些设置。此设置允许您将硬件键盘与仿真器一起使用,但它会阻止软键盘显示。那是我的问题。
在我看来,此设置很容易引起混淆,因为直到您显示它出现的高级设置。在我看来,谷歌的某个人做出的决定很糟糕。 iOS开发更容易的另一个原因......在我看来当然。