在Android

时间:2019-07-03 08:32:58

标签: android android-tablayout

我已经实现了标准的标签布局,其中包含3个片段,并具有自定义标签视图,如本post中所述。

问题是某些语言的选项卡中的标题很长。例如,芬兰语中的“ 未解决的案件”是“ ratkaisemattomat tapaukset ”,这会导致以下情况:

Tab layout problem

自定义视图实现

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:tools="http://schemas.android.com/tools"
    android:background="@color/colorPrimary">

    <TextView
        android:id="@+id/text_header"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textColor="#ffffff"
        android:textSize="16sp"/>

</FrameLayout>

标签布局XML

<androidx.coordinatorlayout.widget.CoordinatorLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

    <com.google.android.material.appbar.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

        <com.google.android.material.tabs.TabLayout
                android:id="@+id/tabs"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                app:tabTextColor="#fff"
                app:tabGravity="fill"
                app:tabSelectedTextColor="#000"/>

    </com.google.android.material.appbar.AppBarLayout>

    <androidx.viewpager.widget.ViewPager
            android:id="@+id/viewpager"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior"/>

</androidx.coordinatorlayout.widget.CoordinatorLayout>

我了解Google是否不建议您在标签中使用大文本,但翻译后的文本太长。

我需要一种可以根据文本长度动态缩放标签高度的方法。我无法在xml文件中提供静态高度。我有什么办法可以做到这一点?

0 个答案:

没有答案