0

我想将新的 textViews 添加到我的自定义线性布局中。但是在绘制线性布局之前,我想检查它是否仍然适合而不与右侧的按钮重叠,如果它会重叠,我想在绘制之前在我的 textView 中剪切文本。

我的布局

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="60dp" >

<ImageButton
    android:id="@+id/b_settings"
    android:layout_width="50dp"
    android:layout_height="44dp"
    android:layout_alignParentRight="true"
    android:layout_margin="0dp"
    android:src="@drawable/watch_settings2x" />

<Button 
    android:id="@+id/b_test"
    android:layout_width="50dp"
    android:layout_height="44dp"
    android:layout_toLeftOf="@id/b_settings"
    />

<com.client.views.Breadcrump
    android:id="@+id/ll_breadcrump"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:orientation="horizontal" />
</RelativeLayout>

我的流程看起来像这样,首先我将一个新的 TextView 添加到我的自定义视图中。

this.addView(TextView, position);

我已经实现了GlobalLayoutListener在绘制自定义视图之前调用的以下内容,但是宽度已经可用:

@Override
            public void onGlobalLayout() {

                cutBreadcrump();
            }

然后我首先为我的面包屑(自定义视图)获取可用空间

 int fragmentWidth = getView().getWidth();

         int widthButtons = mIBSettings.getWidth() + mBTest.getWidth();

         int spaceBreadcrump = fragmentWidth - widthButtons;

接下来我从我新添加的 TextView 中剪切 Chars 并检查新的宽度

CharSequence text = textView.get(0).getText();
                text = text.subSequence(0, text.length() - 1);
                textView.get(0).setText(text);

但这是我的问题。更改文本后宽度不会改变。

mElements.get(0).getWidth();

我还尝试了paint.measureText(string);获取 TextView 宽度的方法,但它总是很长。也许这种方法的作用与我的预期不同......

所以我的问题简而言之,如何在绘制视图之前更改文本后获取视图的新宽度

4

1 回答 1

0

好的,我终于这样做了,我覆盖了onLayout我的观点的方法。因此,当调用该方法时,它会在我的视图的静态属性中保存可用空间。当我添加一个新的 TextView 时,我会借助以下方法检查所有字符串的总和: measure text return pixels based

然后我用一些单独的算法剪断了我的字符串,直到所有的 TextViews 都适合这个空间。之后我画了TextViews。

于 2013-05-13T08:13:10.263 回答