123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- <?xml version="1.0" encoding="utf-8"?>
- <com.edufound.reader.cusview.RoundFrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:roundframelayout="http://schemas.android.com/apk/res-auto"
- android:layout_width="550dp"
- android:layout_height="52dp"
- android:layout_gravity="center"
- android:background="@color/white"
- roundframelayout:radio="26">
- <FrameLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/adapter_item_safflower_title"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:layout_marginLeft="22dp"
- android:gravity="center|left"
- android:text="别人对我的作品评论,回复1次"
- android:textColor="@color/black"
- android:textSize="26dp"
- android:textStyle="bold"></TextView>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginLeft="6dp"
- android:orientation="horizontal">
- <ImageView
- android:layout_width="40dp"
- android:layout_height="40dp"
- android:layout_gravity="center"
- android:src="@drawable/anim_red_follow"></ImageView>
- <TextView
- android:id="@+id/adapter_item_safflower_redfcount"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="center"
- android:layout_marginLeft="7dp"
- android:gravity="center"
- android:text="1"
- android:textColor="#F65641"
- android:textSize="26dp"
- android:textStyle="bold"></TextView>
- </LinearLayout>
- </LinearLayout>
- <LinearLayout
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_gravity="center|right"
- android:layout_marginRight="22dp"
- android:orientation="horizontal">
- <TextView
- android:id="@+id/adapter_item_safflower_overcount"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:gravity="center"
- android:text="0/5"
- android:textColor="#F65641"
- android:textSize="26dp"
- android:textStyle="bold"></TextView>
- </LinearLayout>
- </FrameLayout>
- </com.edufound.reader.cusview.RoundFrameLayout>
|