Android studio,为微调器布局添加按钮可以阻止微调器工作

时间:2017-03-29 00:07:14

标签: java android xml android-layout android-studio

我有一个问题,在我将按钮添加到微调器之前,微调器工作正常。一旦我将按钮放入旋转器布局,它就会阻止微调器工作,但按钮工作正常。我的意思是旋转器停止工作,我的意思是它停止识别点击。

继承布局xml:

<?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:gravity="center_horizontal"
 android:orientation="horizontal">

     <ImageView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/spinnerImage"
        android:layout_width="wrap_content"
        android:layout_height="65dp"
        android:padding="4dp"
        android:layout_gravity="left|center"
        android:clickable="false"
        />
     <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/spinnerText"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center|right" android:focusable="false"
        android:focusableInTouchMode="false"/>
     <ImageButton
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/playbutton"
        android:layout_width="60dp"
        android:layout_height="wrap_content"
        android:background="#ffffff"
        android:padding="4dp"
        android:layout_gravity="center_vertical"
        android:clickable="false"
        android:focusable="false"
        android:focusableInTouchMode="false"/>
 </LinearLayout>

0 个答案:

没有答案