<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:orientation="vertical" android:layout_width="match_parent"
|
android:layout_height="150dp"
|
android:background="@drawable/bg_task">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:src="@drawable/icon_analysis_header"
|
android:layout_centerInParent="true"/>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:layout_alignParentBottom="true"
|
android:layout_marginBottom="@dimen/dimen4"
|
android:text="数据分析"
|
android:textSize="@dimen/textSize_18"
|
android:textColor="@color/primary_text"/>
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="0.5dp"
|
android:background="@color/transparentGray"
|
android:layout_alignParentBottom="true"/>
|
|
</RelativeLayout>
|