我希望我的布局为:
一个ImageView在顶部,然后滑动选项卡。
我创建了一个标签活动;在它的activity.xml文件中有一个标记
<android.support.v4.view.ViewPager />
及其属性。
我试图把这个标签放在线性布局中,即
LinearLayout
ImageView
<android.support.v4.view.ViewPager />
但是ImageView会进入所有碎片。
相反,我希望它在最重要的位置。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Text" />
<android.support.v4.view.ViewPager
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="packageName" />
请帮助,提前致谢。