我希望佈局在圖像上方滾動,其工作正常,但我需要圖像也可點擊。如何實現這一目標?佈局在圖像視圖上方滾動
CODE:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/frame"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/article_image"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_gravity="top"
android:scaleType="fitXY"
android:src="@drawable/ic_launcher" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
**android:paddingTop="150dp"**
android:orientation="vertical" >
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />
...so may views...
</LinearLayout>
</ScrollView>
</FrameLayout>
</LinearLayout>
,因爲我已經添加android:paddingTop="150dp"
佈局滾動圖像上方,但圖像是如何將現在可以點擊?
刪除FrameLayout –
@PiotrGolinski在這種情況下,ImageView將在最上面,佈局將在下面。 – user2056563
你關閉了FrameLayout嗎? –