-1
我有一個包含兩個項目的佈局。 A RelativeLayout
其中有幾個按鈕和ViewPager
。但是,由於按鈕位於ViewPager
後面,因此我無法單擊按鈕。有沒有辦法讓我可以點擊ViewPager
後面的按鈕?這是我的佈局。Android - 通過viewpager點擊按鈕
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/sliding_down_toolbar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:splitMotionEvents="true"
android:id ="@+id/content_container">
(Buttons)
</RelativeLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</FrameLayout>
那麼問題是什麼? – Piyush
你必須解釋你的問題。 –
對不起,我編輯了這個問題。 – nodeDavid