47 lines
1.8 KiB
XML
47 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="@dimen/diy_height">
|
|
<ImageView
|
|
android:id="@+id/img_bg"
|
|
android:background="@drawable/diy_creative_home_01"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_10sp"
|
|
android:textColor="#fffdfd"
|
|
android:id="@+id/tv_state"
|
|
android:background="@drawable/bg_diy_tag_red"
|
|
android:paddingLeft="8.5dp"
|
|
android:paddingTop="2dp"
|
|
android:paddingRight="8.5dp"
|
|
android:paddingBottom="2dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_marginTop="18dp"
|
|
android:text="@string/diy_state"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_50sp"
|
|
android:textColor="@color/bg_white"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_number"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/diy_number_left"
|
|
android:text="@string/diy_number"
|
|
android:layout_centerVertical="true"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_14sp"
|
|
android:textColor="@color/bg_white"
|
|
android:ellipsize="end"
|
|
android:id="@+id/tv_programming_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/diy_number_left"
|
|
android:layout_marginBottom="@dimen/diy_name_bottom"
|
|
android:text="@string/diy_action"
|
|
android:lines="1"
|
|
android:layout_alignParentBottom="true"/>
|
|
</RelativeLayout>
|