我试图在TableLayout中显示一些ImageView和TextView。
但是,对于文本视图(在第二列中),它是部分隐藏的,不会转到下一行。
附加屏幕捕获
here
.
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#D1D3D4"
android:layout_marginTop="5dp"
android:stretchColumns="*"
>
android:layout_height="wrap_content"
android:layout_marginBottom="0.3dp"
android:background="#ffffffff"
>
android:layout_marginLeft="13dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/tickPic"
android:scaleType="matrix"
/>
android:id="@+id/meal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textSize="13sp"
android:text="Dinner, Lunch, Buffet, Brunch, Hi Tea, Supper/Night Dining"
android:textColor="#000000"
/>
文本视图是否可以换行并将文本移到下一行,而不是部分隐藏?
我试过使用android:layout_-marginright,但没有解决任何问题。