9

我遇到了 ViewPager 的另一个问题,我现在无法用我目前的知识解决它。

我有 TabPageIndicator 和 ViewPager,在每个选项卡上,我都显示文本。这是简单的文本视图:

<?xml version="1.0" encoding="utf-8"?>
<view xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    class="viewpagerindicator.TabPageIndicator$TabView" >

    <TextView
        android:id="@+id/vpi_tab_text"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:singleLine="true"
        android:ellipsize="marquee"
        android:gravity="center"
        android:paddingBottom="10dip"
        android:paddingLeft="8dip"
        android:paddingRight="8dip"
        android:paddingTop="10dip"
        android:textColor="@drawable/vpi_tab_text_color"
        android:typeface="serif" />

</view>

我希望选项卡中的文本始终是单行并且始终是整个文本,而不是椭圆形,不换行,不超过 1 行。用户必须能够完整阅读它...

但我不能那样做,我尝试了不同的选项,但仍然遇到一些问题 - 文本不止一行,但只显示第一行,或者只显示部分文本。

你经历过类似的事情吗?

任何帮助表示赞赏

编辑一:

我相信问题出在这里:

@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
final int widthMode = MeasureSpec.getMode(widthMeasureSpec);
final boolean lockedExpanded = widthMode == MeasureSpec.EXACTLY;
setFillViewport(lockedExpanded);
    final int childCount = mTabLayout.getChildCount();
    if (childCount > 1 && (widthMode == MeasureSpec.EXACTLY || widthMode == MeasureSpec.AT_MOST)) {
        if (childCount > 2) {
            mMaxTabWidth = (int) (MeasureSpec.getSize(widthMeasureSpec) * 0.4f);
        } else {
            mMaxTabWidth = MeasureSpec.getSize(widthMeasureSpec) / 2;
        }
    } else {
        mMaxTabWidth = -1;
    }

    final int oldWidth = getMeasuredWidth();
    super.onMeasure(widthMeasureSpec, heightMeasureSpec);
    final int newWidth = getMeasuredWidth();

    if (lockedExpanded && oldWidth != newWidth) {
        // Recenter the tab display if we're at a new (scrollable) size.
        setCurrentItem(mSelectedTabIndex);
    }
 }

mMaxTabWidth...

4

5 回答 5

4

我认为问题很简单,我注释掉了这部分:

        @Override
        public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
            super.onMeasure(widthMeasureSpec, heightMeasureSpec);

            // Re-measure if we went beyond our maximum size.
//          if (mParent.mMaxTabWidth > 0 && getMeasuredWidth() > mParent.mMaxTabWidth) {
//              super.onMeasure(MeasureSpec.makeMeasureSpec(mParent.mMaxTabWidth, MeasureSpec.EXACTLY), heightMeasureSpec);
//          }
        }

现在它按照我想要的方式工作......我一直在查看代码的错误部分。

于 2012-06-28T11:05:13.810 回答
1

当它不应该省略标签中的文本时,我遇到了问题。我在这里找到了修复,#227使用@larham 的建议。这基本上是他所做的,但最好阅读他对他所做的事情以及他为什么这样做的解释:

在 TabPageIndicator.java 中,替换以下内容:

mTabLayout.addView(tabView, new LinearLayout.LayoutParams(0, MATCH_PARENT, 1));

和:

mTabLayout.addView(tabView, new LinearLayout.LayoutParams(WRAP_CONTENT, MATCH_PARENT, 1));

那为我修好了。

于 2013-08-22T07:26:03.003 回答
0

我有一个类似的问题,没有显示整个文本。我解决了它减少左/右样式填充。

于 2012-10-10T06:56:29.670 回答
0

更新 ViewPageIndicator 库 :) 已正式修复 :)

于 2013-09-13T07:58:04.880 回答
0

我使用 Wrap 内容属性,而不是宽度的 Layout weight=1。在 TabPageIndicator 类的 addTab(int,CharSequence,int) 方法中,将 mTab​​Layout.addView 替换为以下内容:

mTabLayout.addView(tabView, new LinearLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT));

于 2013-01-08T09:17:23.503 回答