android:descendantFocusability

Defines the relationship between the ViewGroup and its descendants when looking for a View to take focus.

Must be one of the following constant values.

Constant Value Description
beforeDescendants 0 The ViewGroup will get focus before any of its descendants.
afterDescendants 1 The ViewGroup will get focus only if none of its descendants want it.
blocksDescendants 2 The ViewGroup will block its descendants from receiving focus.

解决方案

在ListView要显示的Item的外层加上

android:descendantFocusability="blocksDescendants"
这段代码

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="match_parent"    android:orientation="horizontal"     android:descendantFocusability="blocksDescendants">    <TextView        android:id="@+id/checkinfo_item_name"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_alignParentLeft="true"        android:layout_gravity="left"        android:textColor="@android:color/black"        android:textSize="25sp" />    <Spinner        android:id="@+id/checkinfo_item_value"        style="@style/SpinnerAsEditText"        android:layout_width="125dip"        android:layout_height="wrap_content"        android:layout_alignParentRight="true"        android:focusable="false" /></RelativeLayout>

更多相关文章

  1. Android图片解决方案
  2. Suggestion: add 'tools:replace="android:value"' to element
  3. 如何在微信直接下载APP(iOS/Android)的解决方案
  4. Android错误处理——Android读取txt文件乱码解决方案
  5. Android SlidingMenu例子运行报错的解决方案
  6. Android Maven 采用第三方jar包,程序运行时报错的解决方案
  7. Android— Eclipse运行Emulator时提示权限不够解决方案(ubuntu 10
  8. Android9.0网络请求解决方案_小笔记
  9. Android stdio调试程序闪退或者报错:"xxx keeps stopping"解决方

随机推荐

  1. 一个日期选择对话框
  2. FormatDateTime Java ,Android 常用的日
  3. Android(安卓)MQTT使用详解
  4. android fastboot 刷机 指令
  5. android SDK 无法更新
  6. Android 最大程度从App回到桌面 不被杀死
  7. Android应用程序键盘(Keyboard)消息处理机
  8. Android 图片缩放与旋转的实现详解
  9. 初窥Tizen
  10. 一个Android工程依赖了一个有 AndroidMan