android:focusable="true"
android:focusableInTouchMode="true"
在最外面的LinearLayout加上两个属性
1 <LinearLayout 2 xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="wrap_content" 5 android:background="#D3D3D3" 6 android:orientation="vertical" 7 android:paddingTop="5dip" 8 android:layout_gravity="center" 9 android:focusable="true" 10 android:focusableInTouchMode="true" >
时间: 2024-10-26 17:23:49