layout_below在listview中的自定义适配器中

时间:2017-06-01 05:31:05

标签: android listview android-adapter

我为adapter制作了自定义listview但它不起作用,当我构建时,有两个textview覆盖,但是当我制作xml时,它使用了{{1} }。
enter image description here

字符串" nguyen quoc bao"和" 13530"是叠加的 in xml
enter image description here

我的layout_below代码:

xml

如何解决这个问题?谢谢你的回复。

2 个答案:

答案 0 :(得分:1)

从第二个 TextView 中删除 layout_centerVertical 属性。

  

如果为true,则将此子项垂直居中于其父级。

 <TextView
        android:id="@+id/textView_stud_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_alignParentLeft="true"
        android:paddingLeft="8dp"
        android:textSize="18sp"
        android:textStyle="bold"
        android:text="111"/>

        <TextView
            android:id="@+id/textView_stud_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/textView_stud_name"
            android:paddingLeft="8dp"
            android:textSize="12sp"
            android:text="111"/>

答案 1 :(得分:1)

按原样粘贴此布局,这种设计为您将来的更改提供了更大的灵活性(提示 - 尝试尽可能使用线性布局,因为相对布局可能会在运行时更改其行为)

 <?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <LinearLayout
            android:layout_alignParentLeft="true"
            android:layout_width="match_parent"
            android:orientation="vertical"
            android:layout_toLeftOf="@+id/llButtons"
            android:layout_height="wrap_content">
            <TextView
                android:id="@+id/textView_stud_name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:paddingLeft="8dp"
                android:text="111"
                android:textSize="18sp"
                android:textStyle="bold" />

            <TextView
                android:id="@+id/textView_stud_id"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_below="@+id/textView_stud_name"
                android:layout_centerVertical="true"
                android:paddingLeft="8dp"
                android:text="111"
                android:textSize="12sp" />

        </LinearLayout>   

        <LinearLayout
            android:id="@+id/llButtons"
            android:layout_alignParentRight="true"
            android:layout_width="wrap_content"
            android:orientation="horizontal"
            android:layout_height="wrap_content">
            <Button
                android:id="@+id/btn_absence"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:textColor="@color/black"
                android:layout_marginRight="5dp"
                android:background="@color/red"
                android:text="Absence" />

            <Button
                android:id="@+id/btn_check"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerVertical="true"
                android:layout_marginRight="5dp"
                android:layout_toLeftOf="@id/btn_absence"
                android:background="@color/green"
                android:text="Check" />

        </LinearLayout>


    </RelativeLayout>