gpt4 book ai didi

Android TabLayout fragment - 垂直滚动

转载 作者:行者123 更新时间:2023-11-29 00:04:47 25 4
gpt4 key购买 nike

我有一个带有 ViewPager 的 (support.v4) TabLayout,它加载了 3 个选项卡,但是在第一次加载选项卡布局时出现了一个奇怪的问题 - 第一个选项卡没有正确地垂直缩放,所以 fragment 布局的底部在滚动时被裁剪:

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"/>

以及在第一个选项卡中加载 fragment 布局的示例:

<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>

fragment 以通常的方式加载到 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);

fragment 布局在每个 fragment 的 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 高度在 fragment 加载时未正确调整有关(可能太早了?) - 但不确定如何处理它,因为 tablayout 控制加载 fragment 布局。

使用最新的支持设计库 (23.1.1),早期库版本也存在问题。

最佳答案

ViewPager 的顶部位置因 CoordinatorLayout 的存在而混淆。考虑使用 LinearLayout 而不是 CoordinatorLayout。

关于Android TabLayout fragment - 垂直滚动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34652338/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com