1

我正在使用 GridLayout 和 textviews 创建详细视图。我的 GridLayout 将有大约 6 行和 2 列。在我的第一行,我有两个文本视图。第一个(标语牌)有一个背景图像,我将文本居中放在它上面。我的图像大约 150 像素宽。第二个文本视图(材料)可以包含从一个单词到 20 个单词的任何内容。我希望文本换行(最多 5 行)。

我的问题是第二个文本视图(材料)中的文本正在离开屏幕。我尝试了许多不同的设置,试图让宽度调整但没有成功。这是我的 XML 布局:

<?xml version="1.0" encoding="UTF-8"?>
<android.support.v7.widget.GridLayout 
    xmlns:grid="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:alignmentMode="alignBounds"
    android:background="@color/lemon"
    grid:columnCount="2"
    grid:rowCount="6" >    

    <TextView
        android:id="@+id/placard"
        grid:layout_gravity="right"
        grid:layout_column="0"
        grid:layout_row="0"
        android:padding="5sp"
        android:gravity="center"
        android:textColor="#000000"
        android:textSize="24sp"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/material"
        grid:layout_column="1"
        grid:layout_row="0"
        android:layout_gravity="center"
        android:layout_width="fill_parent"
        android:ellipsize="none"
        android:scrollHorizontally="false"
        android:padding="5sp"
        android:singleLine="false"
        android:maxLines="5"
        android:textColor="#0000ff"
        android:textSize="12sp"
        android:textStyle="bold" />
</android.support.v7.widget.GridLayout>

任何建议,将不胜感激。先谢谢了。

4

1 回答 1

0

我发现有一个链接解释了如何解决这个问题......基本上,当您使用 GridLayout 的支持版本时,您需要指定自己的命名空间。

http://www.mentby.com/scott-olcott/gridlayout-text-clipping-using-support-library.html

于 2013-01-29T17:41:32.620 回答