ListView简单布局

2017-04-27  本文已影响0人  青见仔

先上图:

![捕获.PNG](https://img.haomeiwen.com/i4889099/ec78bdbd6958ba42.PNG?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)

子布局文件:

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

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="55dp"
    android:layout_centerVertical="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">

    <ImageView
        android:id="@+id/img_photo"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:layout_centerVertical="true"
        android:layout_marginLeft="20dp"
        android:layout_marginStart="20dp"
        app:srcCompat="@mipmap/ic_launcher" />

    <TextView
        android:id="@+id/tv_name"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/img_photo"
        android:layout_marginLeft="8dp"
        android:textSize="16sp"
        android:layout_toEndOf="@+id/img_photo"
        android:layout_toRightOf="@+id/img_photo"
        android:text="名字" />

    <TextView
        android:paddingTop="30dp"
        android:id="@+id/tv_phone"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBottom="@+id/img_photo"
        android:layout_alignLeft="@+id/tv_name"
        android:text="电话" />

</RelativeLayout>

</RelativeLayout>

上一篇 下一篇

猜你喜欢

热点阅读