其中的ImageButton不点击和拨打Horizo​​ntalScrollView点击(One o

2019-10-19 09:19发布

这似乎是一件很无聊的问题,但它只是不是为我工作。

我有一个页面上2个ImageButtons&A Horizo​​ntalScrollView(HSV)。 奇怪的图像按钮(第一个)的一个不点击。 此外,我想使HSV点击所以我用:

android:clickable="true" ,不工作

您可以使用完全一样我已经发布了XML和活动。

这是XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

    <RelativeLayout
 android:id="@+id/topRL"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/free_msgs_textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:text="free msgs left" />

    <ImageButton
        android:id="@+id/buy_imageButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:src="@drawable/ic_launcher" 
        />
     </RelativeLayout>

<ListView
    android:id="@+id/chat_page_listView"
    android:layout_width="fill_parent"
    android:layout_height="match_parent" 
/>

    <RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="70dp"
    android:layout_alignParentBottom="true"
    android:orientation="horizontal" >

    <HorizontalScrollView
        android:id="@+id/chat_message_HSV"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_toLeftOf="@+id/send_image_button"
        android:clickable="true" />

    <ImageButton
        android:id="@+id/send_image_button"
        android:layout_width="75dp"
        android:layout_height="75dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:src="@drawable/ic_launcher" />
    </RelativeLayout>

</RelativeLayout>

这是活动的文件:

public class MainActivity extends Activity {
ImageButton buyIB;
ImageButton sendIB;
HorizontalScrollView chatMessageHSV;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.activity_main);

    sendIB = (ImageButton) findViewById(
            R.id.send_image_button);
    chatMessageHSV = (HorizontalScrollView) findViewById(
            R.id.chat_message_HSV);
    buyIB = (ImageButton) findViewById(R.id.buy_imageButton);

    buyIB.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View arg0) {
            Toast.makeText(MainActivity.this, "buy", Toast.LENGTH_SHORT)
                    .show();
        }
    });

    chatMessageHSV.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            Toast.makeText(MainActivity.this, "hsv", Toast.LENGTH_SHORT).show();

        }
    });

    sendIB.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View arg0) {
            Toast.makeText(MainActivity.this, "send", Toast.LENGTH_SHORT).show();
        }
    });
}// end of onCreate

}

我不能使用按钮点击喜欢

public void onClick(View view)
{}

因为实际的问题是包含抽屉布局,其中我使用的片段与有这种方法是行不通的。

Answer 1:

在这个问题ImageButton不响应你点击,因为ListView将首先为点击,因为它上面的响应ImageButton尝试重新订购吧,当我删除它ImageButton的点击响应

有关HorizontallScrollView我发现使用该解决方案Touch Event ,而不是Click试试这个代码

        chatMessageHSV.setOnTouchListener(new OnTouchListener() {

        @Override
        public boolean onTouch(View v, MotionEvent event) {

            if (event.getAction() == MotionEvent.ACTION_DOWN) {
                Toast.makeText(ImageButtonActivity.this, "hsv",
                        Toast.LENGTH_SHORT).show();

            }else if (event.getAction() == MotionEvent.ACTION_UP){
                // here code if the touch up
            }

            return false;

        }
    });

喂我回来



Answer 2:

该ImageButton的不是点击问题可以通过增加的ListView这两条线来解决:

机器人:layout_below = “@ + ID / topRL”

机器人:layout_above = “@ + ID / bottomRL”



文章来源: One of the ImageButton not clicking & make HorizontalScrollView clickable