私は 1 つ持っており、リストに 1 つのオブジェクトをListView
表示しました。ArrayList
各リスト項目はTableLayout
. TableLayout
を持っていTableRow
ます。TableRow
3TextView
秒あります。
私はグリッドのように見えるよう に、 TextView
s の境界線を表示したいと考えています。ListView
TextView
でs の境界線を設定する方法を教えてもらえますTableRow
か?
私は 1 つ持っており、リストに 1 つのオブジェクトをListView
表示しました。ArrayList
各リスト項目はTableLayout
. TableLayout
を持っていTableRow
ます。TableRow
3TextView
秒あります。
私はグリッドのように見えるよう に、 TextView
s の境界線を表示したいと考えています。ListView
TextView
でs の境界線を設定する方法を教えてもらえますTableRow
か?
以下のコードを使用してみてください。
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:padding="10dp"
android:shape="rectangle" >
<stroke
android:width="1dp"
android:color="#C0C0C0" />
<solid android:color="#C0C0C0" />
<corners
android:bottomLeftRadius="5dp"
android:bottomRightRadius="5dp"
android:topLeftRadius="5dp"
android:topRightRadius="5dp" />
</shape>