其他分享
首页 > 其他分享> > 在TableLayout中使用EditView的Android文本剪辑问题

在TableLayout中使用EditView的Android文本剪辑问题

作者:互联网

我有一个小剪辑问题,我无法使用TableRow中的EditText视图解决.无论我尝试什么,EditText视图都被剪裁(附加截图),或者,如果我将shrinkColumns设置为0或1,标签文本将消失(并且EditText视图占据整个宽度).布局如下:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent" android:layout_height="fill_parent"
android:orientation="vertical" android:padding="10dip">

  <TableLayout android:orientation="vertical"
  android:layout_width="fill_parent" android:layout_height="fill_parent">

    <TableRow android:orientation="horizontal"
    android:layout_width="fill_parent" android:layout_height="wrap_content">

      <TextView android:paddingRight="10dip" android:layout_column="1"
      android:text="Label Text" />
      <EditText android:text="Very long text that makes the text view go on clipping frenzy"
      android:layout_width="wrap_content" android:layout_height="wrap_content" />

    </TableRow>

  </TableLayout>

</LinearLayout>

我试过在QVGA和HVGA上运行的2.2仿真器,2.1上的HTC Hero和2.1上的Wildfire上.我也玩过clipToPadding属性,这在我的情况下似乎没什么帮助.如果我使用长文本设置提示属性并将文本值保留为空,则会出现相同的问题.

由于我没有做任何特别复杂的事情,我怀疑我身边有一个简单的错误.任何想法,提示或建议都非常感谢.

干杯!

解决方法:

在TableLayout上设置android:shrinkColumns =“1”,并从TextView中删除android:layout_column =“1”.

标签:android,text,tablelayout,clipping
来源: https://codeday.me/bug/20190610/1212274.html