| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?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" >
- <RelativeLayout
- android:id="@+id/layout_icon"
- android:layout_width="match_parent"
-
- android:layout_height="wrap_content" >
- <ImageView
- android:id="@+id/iv_image"
- android:layout_width="wrap_content"
- android:layout_centerHorizontal="true"
- android:layout_height="wrap_content">
- </ImageView>
- <Button
- android:id="@+id/btn_dot"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:textColor="@color/white"
- android:focusable="false"
- android:textSize="@dimen/textsize_11"
- android:layout_alignRight="@id/iv_image"
- android:layout_marginTop="0dp"
- android:layout_marginRight="-8dp"
- android:background="@drawable/business_count"/>
- </RelativeLayout>
- <TextView
- android:id="@+id/tv_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="5dp"
- android:layout_below="@+id/layout_icon"
- android:gravity="center"
- android:textColor="@color/black"
- android:textSize="13sp"
- >
- </TextView>
- </RelativeLayout>
|