android的List View的Item布局问题
伊谢尔伦
伊谢尔伦 2017-04-18 09:13:15
0
2
613

我希望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伐。

모든 응답(2)
洪涛

선형 레이아웃, 첫 번째 텍스트 뷰가 전체 공간을 차지하도록 설정되었습니다. 물론 중간 및 오른쪽 레이아웃을 해제할 수 없습니다. 왼쪽, 중간 및 오른쪽 부분이 수평 공간을 균등하게 할당한다고 가정해 보겠습니다. 이렇게

으아악

나머지 텍스트 배열을 미세 조정할 수 있습니다.

刘奇

linearLayout의 가중치를 사용하세요. 항목 루트 레이아웃은 가로 선형 레이아웃이고 하위 레이아웃 가중치는 모두 1입니다. 두 번째 하위 레이아웃은 세로 선형 레이아웃이고 해당 하위 레이아웃은 가중치가 1인 두 개의 textView입니다.
그러나 가능하면 중량을 사용하지 않는 것이 가장 좋습니다. 남용하면 성능에 문제가 발생할 수 있습니다.

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿