我想在我的应用中实现可滚动的标签。
我有一些内容,比如图像,一些文本视图用于显示页面的信息,以及一个显示底部选项卡的viewpager。
我对viewpager的问题是,每当我滑动或点击任何标签页时,内容都会在同一个地方加载。
我想要的是:
我怎样才能做到这一点?
我的布局xml是:
<LinearLayout android:orientation="vertical"
android:layout_width="match_parent" android:layout_height="match_parent">
<RelativeLayout android:layout_width="match_parent"
android:layout_height="wrap_content">
<com.android.volley.toolbox.NetworkImageView
android:layout_width="match_parent" android:layout_height="200dp">
</com.android.volley.toolbox.NetworkImageView>
</RelativeLayout>
</LinearLayout>