我正在使用的viewPager
有一个片段,而那个片段有一个recyclerView
。我正在尝试同时显示viewPager
的所有标签。有可能吗,或者有其他不同的方法来处理这种情况。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:tabGravity="center"
android:layout_gravity="center_horizontal"
app:tabMode="scrollable"
app:tabPaddingEnd="1dp"
app:tabPaddingStart="1dp"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_gravity="center_horizontal"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="0dp" />
</LinearLayout>
答案 0 :(得分:0)
如果您想一次显示每个选项卡上的所有数据,我建议您不要使用ViewPager,因为那样会破坏其目的。
如果您的想法是根据屏幕尺寸和/或方向来分开显示数据的方式,则可以像这样加载另一个视图:
if (getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE)
{
//Load landscape view with all data displaying at once
setContentView(R.layout.main_landscape);
}
else
{
//We're in portrait mode, so we don't have space to fit all data at once
//so here we can take use of the ViewPager.
setContentView(R.layout.main_portrait);
}