0

我的应用程序有一个带有以下片段的 viewpager

1 登录 2 测量 3 查看数据

用户登录并滑动到测量片段后,我的应用程序将自动测量一些参数。

由于 viewpager 是可滑动的。如果用户想在没有登录的情况下进行测量,可以将片段灰显/禁用。

谢谢。

<?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" >

    <ImageButton
        android:id="@+id/qt_deleteButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/qt_testtype"
        android:layout_marginLeft="28dp"
        android:layout_marginTop="18dp"
        android:layout_toRightOf="@+id/qt_saveButton"
        android:background="@drawable/border_button"
        android:src="@drawable/delete" />

    <ImageButton
        android:id="@+id/qt_saveButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/qt_deleteButton"
        android:layout_toRightOf="@+id/maintxt_measure"
        android:background="@drawable/border_button"
        android:src="@drawable/save" />

    <FrameLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:src="@drawable/main_unknown" />

    </FrameLayout>

</RelativeLayout>

我已经将我的布局文件编辑到上面,但是下面的图层仍然是可点击的。有什么我错过的吗?

谢谢

4

1 回答 1

1

抱歉,不,它应该是这样的:

<FrameLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <!-- You may change this to your relative layout, just make sure it is fill_parent -->
    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center">

        <!-- Everything related to your main activity goes here -->

    </LinearLayout>

    <LinearLayout
        android:id="@+id/faderLayout"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:gravity="center">

        <ImageView
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="#E0000000"
            android:onClick="faderClicked" />

    </LinearLayout>

</FrameLayout>

因此,在您的活动中,您将拥有一个public void faderClicked(View v)根本不执行任何操作的函数,并且您可以通过更改faderLayout 的可见性来控制视图。

于 2013-05-07T05:43:42.673 回答