51 lines
2.0 KiB
XML
51 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
android:gravity="center_horizontal">
|
|
<FrameLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<com.facebook.drawee.view.SimpleDraweeView
|
|
android:id="@+id/all_channels_logo"
|
|
android:layout_width="42dp"
|
|
android:layout_height="42dp"
|
|
android:layout_marginTop="27dp" />
|
|
<TextView
|
|
android:id="@+id/all_channels_status"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="3dp"
|
|
android:paddingRight="3dp"
|
|
android:paddingTop="1dp"
|
|
android:paddingBottom="1dp"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginLeft="20dp"
|
|
android:text="审核中"
|
|
android:textSize="9sp"
|
|
android:textColor="@android:color/white"
|
|
android:background="@drawable/selector_channel_verify"
|
|
android:visibility="gone" />
|
|
|
|
<ImageView
|
|
android:id="@+id/all_channels_selected"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:src="@drawable/ic_selected"
|
|
android:layout_marginTop="20dp"
|
|
android:layout_marginLeft="25dp"
|
|
android:visibility="gone"/>
|
|
</FrameLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/all_channels_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="情感咨询"
|
|
android:textColor="@color/loginText2"
|
|
android:textSize="13sp"
|
|
android:layout_marginTop="6dp"/>
|
|
|
|
</LinearLayout> |