60 lines
1.8 KiB
XML
60 lines
1.8 KiB
XML
<?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="80dp"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginRight="60dp"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/img"
|
|
app:riv_oval="true"
|
|
android:src="@mipmap/ic_launcher"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="25dp"
|
|
android:gravity="center|left"
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<TextView android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:textColor="@color/yellow4"
|
|
android:text="我开播了!"/>
|
|
|
|
<TextView android:id="@+id/content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="15sp"
|
|
android:layout_marginTop="5dp"
|
|
android:textColor="@color/gray3"
|
|
android:text="说好的,你今天来看我直播!"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="15dp"
|
|
android:textColor="@color/gray3"
|
|
android:layout_alignParentRight="true"
|
|
android:text="PD LIVE"/>
|
|
|
|
</RelativeLayout> |