検索

ホームページ  >  に質問  >  本文

android的List View的Item布局问题

我希望listView的item横向显示三块内容,分别位于listitem的左,中,右位置;中间的有两个TextView,竖直排列;下面是代码,调试了一天也没弄出来,麻烦大家帮忙看看,谢谢

<?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="fill_parent"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/word"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:text="aaaaaaaaa" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_horizontal"
        android:orientation="vertical">

        <TextView
            android:id="@+id/_en"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="**********" />

        <TextView
            android:id="@+id/_am"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="+++++++++" />
    </LinearLayout>

    <TextView
        android:id="@+id/meaning"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:layout_gravity="right"
        android:text="ddddddddddd" />

</LinearLayout>
伊谢尔伦伊谢尔伦2771日前607

全員に返信(2)返信します

  • PHP中文网

    PHP中文网2017-04-18 09:15:15

    リニアレイアウト、最初のテキストビューはスペース全体を占めるように設定されています。もちろん、中央と右側のレイアウトは、水平方向のスペースを均等に割り当てることができると仮定します。このように

    リーリー

    残りのテキスト配置は微調整できます。

    返事
    0
  • 怪我咯

    怪我咯2017-04-18 09:15:15

    linearLayout のウェイトを使用するだけです。アイテムのルート レイアウトは水平 LinearLayout で、サブレイアウトのウェイトはすべて 1 です。2 番目のサブレイアウトは垂直 LinearLayout で、そのサブレイアウトはウェイト 1 の 2 つの textView です。
    ただし、ウェイトを乱用するとパフォーマンスに問題が生じる可能性があるので、使用しないことが最善です。

    返事
    0
  • キャンセル返事