0

私がやろうとしていること

現在、アクティビティのデザインを作成しています。このデザインには、さまざまな種類の「ボックス」が含まれています。これらの「ボックス」にはすべて、さまざまな情報が含まれています。一枚の紙に手作業でデザインを作成しましたが、.xmlにそのアイデアが反映されません!!

質問

この投稿の下部に、アプリ用に作成したいコピーされた「ボックス」があります。XMLでこれを行う方法が本当にわからないので、これを実現するのを手伝ってください。私はAndroid4.0(ICS)を使用しています。

ボックスのデザイン

4

2 に答える 2

2

私はあなたに疑似レイアウトを与えます:

<RelativeLayout>
    <TextView
        full width
        id:infobox/>
    <Button
        layoutParentRight
        below infobox/>
    <TextView
        layout_below infobox
        toLeftOf button/>
    // repeat the textView above and always below the previous one
</RelativeLayout>

LinearLayoutsの場合:

<LinearLayout>
    <TextView infobox/>
    <LinearLayout>
        <LinearLayout>
            <TextView />
            <TextView />
            <TextView />
        </LinearLayout>
        <Button/>
    </LinearLayout>
</LinearLayout>

ご覧のとおり、それははるかに複雑で肥大化しています。私はいつも水平/垂直の向きで混乱するので、これをあなたに任せて調べます:)実験してみて、うまくいかない場合は、試したレイアウトで答えを更新してください。

于 2012-06-01T12:42:27.813 に答える
2

このようなものが動作するはずです:

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

  <TextView
    android:id="@+id/box_title"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Box Title" />

  <LinearLayout
    android:id="@+id/box_content"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal" >

    <LinearLayout
        android:id="@+id/box_content"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="vertical" >

        <TextView
            android:id="@+id/box_content_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Hans Max" />

        <TextView
            android:id="@+id/box_content_2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Maxiburger 12" />

        <TextView
            android:id="@+id/box_content_3"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="8002, Muster" />
      </LinearLayout>

      <ImageButton
        android:id="@+id/box_button"
        android:layout_weight="5"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
  </LinearLayout>

</LinearLayout>
于 2012-06-01T12:51:34.143 に答える