简体   繁体   English

停止android scrollview防止父LinearLayout onclick

[英]Stop android scrollview prevent parent LinearLayout onclick

I need to allow user to CLICK anywhere on the screen, so I've implemented onClick listener for mainLayout and it worked great. 我需要允许用户单击屏幕上的任何位置,因此我为mainLayout实现了onClick侦听器,并且效果很好。

But the problem is I've got to add a scrollview inside mainLayout to support small screen sizes and after adding scrollview, it blocks the parentLayout (in my case mainLayout) CLICK EVENT . 但是问题是我必须在mainLayout中添加一个scrollview以支持较小的屏幕尺寸,并且在添加scrollview之后,它将阻塞parentLayout(在我的情况下为mainLayout) CLICK EVENT

Just to exaplin this, a sample layout is as follows. 为了说明这个,示例布局如下。

<!-- MAIN LAYOUT WHERE I NEED 
     THE CLICK EVENT-->
<LinearLayout
    android:id="@+id/mainLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#bebebe"
    android:orientation="vertical"
    android:onClick="onClick_MainLayout">

    <ScrollView
        android:id="@+id/mainScrollView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <Button
                android:id="@+id/button1"
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:text="TEST BUTTON 1"
                android:onClick="onClick_Button1"/>

            <Button
                android:id="@+id/button2"
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:text="TEST BUTTON 2"
                android:onClick="onClick_Button2"/>

            <TextView
                android:id="@+id/textview1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="My Text View"/>
        </LinearLayout>
    </ScrollView>
</LinearLayout>

I searched for this and found various ideas like disableing onClick manually in all other views inside scrollview etc but non of them works. 我进行了搜索,发现了各种想法,例如在scrollview内的所有其他视图中手动禁用了onClick等,但都不可行。

NOTE: I tried both implementing onClick listener manually in java and adding android:onClick="onClick_MainLayout" in to layout. 注意:我尝试在Java中手动实现onClick侦听器和将android:onClick =“ onClick_MainLayout”添加到布局中。 Both the same. 两者都一样。

EDITS ---------------------- 编辑----------------------

All the changes I've done as you (@IntelliJ Amiya) mentioned is as below. 我在您(@IntelliJ Amiya)所做的所有更改如下。 Please let me know anything is missing. 请让我知道任何东西丢失。

<RelativeLayout
    android:id="@+id/mainLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#bebebe">

    <ScrollView
        android:id="@+id/mainScrollView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <Button
                android:id="@+id/button1"
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:text="TEST BUTTON 1"/>

            <Button
                android:id="@+id/button2"
                android:layout_below="@+id/button1"
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:text="TEST BUTTON 2"/>

            <TextView
                android:id="@+id/textview1"
                android:layout_below="@+id/button2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="My Text View"/>
        </RelativeLayout>
    </ScrollView>
</RelativeLayout>

And in on create 并在创建

    findViewById(R.id.mainLayout).setOnClickListener(new View.OnClickListener()
    {
        @Override
        public void onClick(View v)
        {
            Log.v("MyLogs", "Click Event Fires...");
        }
    });

XML XML格式

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    android:id="@+id/mainLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#bebebe"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">

    <ScrollView
        android:id="@+id/mainScrollView"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <Button
                android:id="@+id/button1"
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:text="TEST BUTTON 1"
                android:onClick="onClick_Button1"/>

            <Button
                android:id="@+id/button2"
                android:layout_width="100dp"
                android:layout_height="40dp"
                android:text="TEST BUTTON 2"
                android:onClick="onClick_Button2"/>

            <TextView
                android:id="@+id/textview1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="My Text View"/>
        </LinearLayout>
    </ScrollView>
</LinearLayout>

JAVA 爪哇

public class MainActivity extends AppCompatActivity {


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

    }

    public void onClick_Button1(View v)
    {
        Toast.makeText(this, "1ST Button Click", Toast.LENGTH_SHORT).show();
    }
    public void onClick_Button2(View v)
    {
        Toast.makeText(this, "2ND Button Click", Toast.LENGTH_SHORT).show();
    }


}

Your Scroll view overlaps the linear layout ie @mainLayout,so set its height to wrap content then you can perform onclick for both scroll view buttons and mainlayout. 滚动视图与线性布局(即@mainLayout)重叠,因此设置其高度以包装内容,然后可以对滚动视图按钮和主布局执行onclick。 Pls tell me if i wrong. 请告诉我我是否错。

 <ScrollView
        android:id="@+id/mainScrollView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM