0

基本的に私が探しているのは、次のような ListView の行です。

Title:               Harry Potter
Hardcover:                    Yes
Own:                           No
Country:            United States

誰かがこれらの行の 1 つの XML レイアウトを投稿できますか? 私のコードではうまくいかないようです。

ここに私が持っているものがありますが、それは明らかに間違っていて機能していません:

<?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="wrap_content">

  <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="0"
         >

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TextView
      android:id="@+id/txtKey"
      android:layout_height="fill_parent"
      android:layout_gravity="left" 
      android:textSize="18dip" 
      android:layout_marginLeft="8dip"
      android:textStyle="bold"
      android:layout_marginTop="2dp"
      android:layout_marginBottom="2dp"
      android:text="test"
      />

            <TextView
      android:id="@+id/txtValue"
      android:layout_height="fill_parent"
      android:layout_gravity="right" 
      android:textSize="18dip" 
      android:layout_marginRight="8dip"
      android:layout_marginTop="2dp"
      android:layout_marginBottom="2dp"
      android:text="test2"
      />

        </TableRow>

        </TableLayout>

</LinearLayout>
4

2 に答える 2

0

とった。

<?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="wrap_content">

  <TableLayout
        android:id="@+id/tableLayout1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:stretchColumns="0"
         >

        <TableRow
            android:id="@+id/tableRow1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

            <TextView
                android:id="@+id/txtKey"
                android:text="Some text"
                android:textSize="18dip"
                android:textStyle="bold"
                android:layout_marginLeft="8dip"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="left"
                android:layout_weight="1.0"
                android:layout_marginTop="2dp"
                android:layout_marginBottom="2dp"
            />

            <TextView
                android:id="@+id/txtValue"
                android:text="Some text"
                android:textSize="18dip"
                android:layout_marginRight="8dip"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:gravity="right"
                android:layout_weight="1.0"
                android:layout_marginTop="2dp"
                android:layout_marginBottom="2dp"
            />

        </TableRow>

        </TableLayout>

</LinearLayout>
于 2012-08-02T23:49:22.397 に答える