0

我在我的应用程序中使用匹配的父布局中的进度条。问题是在进度条运行时背景中的按钮仍然可以点击。它们不应该是可点击的,所以我如何使它们不可点击。布局是:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/black_with_fifty_percent_alpha"
    android:gravity="center"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@android:color/white"
        android:gravity="center_horizontal"
        android:orientation="vertical" >

    <ProgressBar
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/text_tv_progress_bar_bultenler"
        android:textAppearance="?android:attr/textAppearanceMedium" />

    </LinearLayout>

</LinearLayout>
4

1 回答 1

0

尝试将其设置为此布局:

    OnTouchListener listener =   new OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                return true;//consume the touch event
            }
        };
    yourLayout.setOnTouchListener(listener);
于 2013-07-20T14:52:33.170 回答