- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个带有 ViewPager 的 (support.v4) TabLayout,它加载了 3 个选项卡,但是在第一次加载选项卡布局时出现了一个奇怪的问题 - 第一个选项卡没有正确地垂直缩放,所以 fragment 布局的底部在滚动时被裁剪:
但是当我切换到另一个选项卡并返回时,它会正确缩放:
这是我的 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/
我设法将 Google Maps API 合并到 TabLayout 中,但它有两个问题。一种是应用程序立即询问用户位置,一种是授予权限,但它不会显示新的更新位置。谁能帮帮我吗? 主要 Activit
我已将 tab_layout 放在屏幕底部。我希望它在向上滚动时隐藏并在向下滚动时重新出现。 我试过折叠工具栏布局,但没有用。这是我使用折叠工具栏布局后的代码。建议我一个新的方法,或者指出错误。或者告
是否可以在另一个tablayout 的选项卡内放置一个tablayout?为了更好地解释,我创建了下图。所需的滑动运动如图中所示。 我的主要 Activity XML
我有 viewpager,它有 4 个选项卡,用 tablayout 实现它。因为我想将字体更改为自定义字体,所以我使用了自定义选项卡布局。现在的问题是选定的选项卡文本颜色不会随 tabSelecte
我正在尝试从代码中设置文本大小,因为此选项不存在,有人知道如何实现此目的吗? 我知道可以通过样式实现,但我不能使用样式。 我也尝试过this例如,但它不起作用。 我已经部分成功(某些选项卡获得新的文本
我已经尝试过应该使它工作的解决方案(自定义样式): 文件夹res\values-v21\styles.xml: #3F51
当我开始一个新的选项卡式 Activity 时,我有这个生成的 XML 代码: 我到底应该如何改变它
您好,我已经搜索了实现上图中所示内容的可能方法,但找不到任何帮助。我想创建一个 TabLayout 和底部导航,这样 TabLayout 绑定(bind)到第一个底部图标,第二个底部图标绑定(bind
在我的应用程序中,我有带有两个选项卡的 TabLayout:秒表和计时器。当我在这两个选项卡之间切换并且计时器没有运行时,一切都很好。当我启动计时器时出现问题,指示器动画被延迟。下面的视频演示了此问题
无法解析 TabLayout。我几乎拥有作为解决方案提供的所有依赖项。项目构建了,但仍然无法解决。我正在使用 androidx,但我也尝试过使用 28。 依赖关系: implementation f
我正在使用 Android 设计库中的 TabLayout。我有多个选项卡,每个选项卡在被选择时都有一个操作。所以我有一个属性 startSelection,它执行 tabLayout.getTabA
我从一些设计支持库资源开始,特别是 TabLayout。 这是一个简单的 fragment ,但我无法填充我的 TabLayout, fragment 正常滑动,但我的 TabLayout 没有填充标
我制作了一个 TabLayout 并且工作正常,但我想禁用带有幻灯片的选项卡之间的更改,并使其仅通过单击选项卡名称来更改选项卡有办法做到吗? 最佳答案 只需使用 TabLayout 而不使用 View
在一个项目中,我们将 Material Design 组件的 TabLayout 与 ViewPager 结合使用。有 14 个选项卡,我们希望其中 7 个选项卡在 TabLayout 中一次可见。选
我有以下带有 TabLayout 和 2 个选项卡的 fragment 。每个选项卡都填充一个点来代表 viewpager 内的页面。 如何设置内部有点的 2 个选项卡之间的空间/填充/边距? 我尝试
当我将 Tablayout 拖到布局中时,它卡在左上角。我使用的是android studio 3.6.1。我已经添加了实现 'com.google.android.material:material
更新:我将适配器类修改为以下内容,现在可以正常工作了: public class SectionsPagerAdapter extends FragmentPagerAdapter { R.strin
我在选项卡上方使用底部 TabLayout 和 ViewPager,下面列出了 XML: 当键盘出现时,整个 View 向上推,我只想隐藏底部的 TabLa
有什么方法可以在当前选择的选项卡上设置不同的字体(在 TabLayout 中)? 要使用自定义字体,我使用 Calligraphy,但我正在寻找任何方法来为当前选定的选项卡定义不同的字体。 最佳答案
我想在 app:tabMode="scrollable" 时集中 TabLayout 我的TabLayout 有了那个布局。像这样的 Tablayout(但所有选项卡都左对齐): 如果 app:ta
我是一名优秀的程序员,十分优秀!