我有一个带有ViewPager的(support.v4)TabLayout,可以加载3个标签,但是第一次加载标签布局时会遇到一个奇怪的问题-第一个标签无法正确垂直缩放,因此片段的底部在滚动时被裁剪:
Tab fragment - cropped
但是,当我切换到另一个选项卡并返回时,它的缩放比例正确:
Tab layout - correct
这是我的CoordinatorLayout,其中包含TabLayout和ViewPager:
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/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:tabMinWidth="120dp"
app:tabGravity="fill"
app:tabMode="scrollable"
/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
并在第一个选项卡中加载片段布局的示例:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/accountScrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginBottom="84dp"
android:paddingTop="10dp"
android:paddingLeft="24dp"
android:paddingRight="24dp">
<LinearLayout
android:id="@+id/existingAccount"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:src="@drawable/thrumaze_small_logo"
android:layout_width="wrap_content"
android:layout_height="32dp"
android:layout_gravity="center_horizontal" />
<Button
android:id="@+id/btnEditAccount"
android:layout_width="32dp"
android:layout_height="32dp"
android:scaleType="fitCenter"
android:layout_gravity="right"
android:background="@android:color/transparent"
android:drawableTop="@drawable/ic_action_edit" />
<!-- Email Label -->
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="4dp">
<EditText android:id="@+id/txtUserName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_label_email"
android:editable="false"
android:focusable="false"
android:clickable="false" />
</android.support.design.widget.TextInputLayout>
<!-- First name-->
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="4dp">
<EditText android:id="@+id/txtFirstName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_label_firstName"
android:editable="false"
android:focusable="false"
android:clickable="false"/>
</android.support.design.widget.TextInputLayout>
<!-- Last name-->
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="4dp">
<EditText android:id="@+id/txtLastName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_label_lastName"
android:editable="false"
android:focusable="false"
android:clickable="false"/>
</android.support.design.widget.TextInputLayout>
<LinearLayout android:id="@+id/lineGender"
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="2"
android:paddingLeft="5dp"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:layout_height="wrap_content">
<TextView
android:text="@string/hint_label_gender"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<TextView
android:id="@+id/txtGender"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
</LinearLayout>
<LinearLayout android:id="@+id/dateOfBirthLine"
android:orientation="horizontal"
android:layout_width="match_parent"
android:weightSum="2"
android:paddingLeft="5dp"
android:paddingTop="12dp"
android:paddingBottom="12dp"
android:layout_height="wrap_content">
<TextView
android:text="@string/hint_label_dateBirth"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
<TextView
android:id="@+id/txtDateOfBirth"
android:text=""
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:id="@+id/loginAccountLine"
android:orientation="vertical"
android:layout_marginTop="20dp"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.AppCompatButton
android:id="@+id/btn_login"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginTop="12dp"
android:layout_marginBottom="22dp"
android:padding="12dp"
android:background="#607ee1"
android:textColor="#fff"
android:text="@string/button_label_login"/>
<TextView android:id="@+id/link_signup"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginBottom="34dp"
android:text="@string/createAccountLabelText"
android:gravity="center"
android:textSize="14dip"/>
</LinearLayout>
<LinearLayout
android:id="@+id/logoutLine"
android:orientation="vertical"
android:visibility="gone"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.AppCompatButton
android:id="@+id/btn_logout"
android:gravity="center"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:layout_marginTop="12dp"
android:layout_marginBottom="22dp"
android:padding="12dp"
android:background="#607ee1"
android:textColor="#fff"
android:text="@string/button_label_logout"/>
</LinearLayout>
片段以通常的方式加载到ViewPager中:
adapter.addFrag(new AccountFragment(), getActivity().getString(R.string.module_tabCaption_account));
adapter.addFrag(new AccountCodeFragment(), getActivity().getString(R.string.module_tabCaption_userQR));
adapter.addFrag(new AccountLicenseFragment(), getActivity().getString(R.string.module_tabCaption_license));
viewPager.setAdapter(adapter);
片段布局在每个片段的OnCreateView中被夸大:
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
rootView = inflater.inflate(R.layout.fragment_account, container, false); return rootView;
}
这个问题也发生在ListViews上,它仅显示(滚动显示)大约覆盖设备屏幕高度的行,之后什么也不显示。但是,如果我切换到其他选项卡然后再返回-效果很好。
我尝试了各种与布局高度相关的组合,甚至通过代码动态设置参数,但均未成功。
我猜想这与支持v4库+ viewpager的高度有关,无法在片段加载时正确调整(也许还为时过早?)-但不确定如何处理它,因为tablayout可以控制加载片段布局。
使用最新的支持设计库(23.1.1),早期版本的库也存在问题。
最佳答案
ViewPager的顶部位置被CoordinatorLayout的存在所迷惑。考虑使用LinearLayout而不是CoordinatorLayout。
关于android - Android TabLayout fragment -垂直滚动,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34652338/