其中一个ImageButton没有点击&使Horizo​​ntalScrollView可点击

时间:2014-02-17 05:08:04

标签: android horizontalscrollview

这似乎是一个非常愚蠢的问题,但它对我不起作用。

我有2个ImageButtons&页面上的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)
{}

因为实际问题是包含抽屉布局,我正在使用片段&amp;这种方法不起作用。

2 个答案:

答案 0 :(得分:2)

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;

        }
    });

喂我回来

答案 1 :(得分:0)

可以通过向ListView添加以下两行来解决ImageButton非点击问题:

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

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