我希望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>
PHP中文网2017-04-18 09:15:15
リニアレイアウト、最初のテキストビューはスペース全体を占めるように設定されています。もちろん、中央と右側のレイアウトは、水平方向のスペースを均等に割り当てることができると仮定します。このように
リーリー残りのテキスト配置は微調整できます。
怪我咯2017-04-18 09:15:15
linearLayout のウェイトを使用するだけです。アイテムのルート レイアウトは水平 LinearLayout で、サブレイアウトのウェイトはすべて 1 です。2 番目のサブレイアウトは垂直 LinearLayout で、そのサブレイアウトはウェイト 1 の 2 つの textView です。
ただし、ウェイトを乱用するとパフォーマンスに問題が生じる可能性があるので、使用しないことが最善です。