如何在framelayout中触摸布局后面

时间:2014-03-09 12:04:38

标签: android android-layout

我是android的新手。我想让布局与Etsy应用程序一样。在我的xml布局中,我在内容布局后面有imageview。当用户滚动时,内容布局将叠加在imageview上。我被放到其他与imageview相同尺寸的布局但我无法触摸imageview。在这种情况下如何触摸后面的布局(ImageView)。

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<ImageView
    android:id="@+id/test"
    android:layout_width="fill_parent"
    android:layout_height="200dp"
    android:background="@drawable/sl"
    android:gravity="center" />

<ScrollView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

        <LinearLayout
            android:id="@+id/demo"
            android:layout_width="fill_parent"
            android:layout_height="200dp"
            android:orientation="horizontal" >
        </LinearLayout>

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:background="#345343"
            android:orientation="vertical" >

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:background="#123456"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world"
                android:textColor="#FFFFFF" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:padding="50dp"
                android:text="@string/hello_world" />
        </LinearLayout>
    </LinearLayout>
</ScrollView>

理想的是这样的:

https://www.dropbox.com/s/3d1o4a93qwm4bjn/Screen%20Shot%202014-03-09%20at%2018.50.22.png https://www.dropbox.com/s/rc9p8tgdsh17hyq/Screen%20Shot%202014-03-09%20at%2018.50.15.png

1 个答案:

答案 0 :(得分:0)

将布局“可点击”属性值设置为“false”

android:clickable="false"

我希望它适合你。