我希望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>
선형 레이아웃, 첫 번째 텍스트 뷰가 전체 공간을 차지하도록 설정되었습니다. 물론 중간 및 오른쪽 레이아웃을 해제할 수 없습니다. 왼쪽, 중간 및 오른쪽 부분이 수평 공간을 균등하게 할당한다고 가정해 보겠습니다. 이렇게
으아악나머지 텍스트 배열을 미세 조정할 수 있습니다.
linearLayout의 가중치를 사용하세요. 항목 루트 레이아웃은 가로 선형 레이아웃이고 하위 레이아웃 가중치는 모두 1입니다. 두 번째 하위 레이아웃은 세로 선형 레이아웃이고 해당 하위 레이아웃은 가중치가 1인 두 개의 textView입니다.
그러나 가능하면 중량을 사용하지 않는 것이 가장 좋습니다. 남용하면 성능에 문제가 발생할 수 있습니다.