24 lines
941 B
XML
24 lines
941 B
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="match_parent">
|
|
<RelativeLayout
|
|
android:id="@+id/rl_select_item_layout"
|
|
android:layout_width="@dimen/dp110"
|
|
android:layout_height="@dimen/dp110"
|
|
android:layout_centerInParent="true">
|
|
<ImageView
|
|
android:id="@+id/im_robot_icon"
|
|
android:padding="@dimen/dp5"
|
|
android:layout_width="@dimen/dp110"
|
|
android:layout_height="@dimen/dp110"
|
|
android:scaleType="centerInside"
|
|
android:layout_centerInParent="true"/>
|
|
</RelativeLayout>
|
|
<View
|
|
android:layout_width="@dimen/dp100"
|
|
android:layout_height="@dimen/dp14"
|
|
android:layout_below="@+id/rl_select_item_layout"
|
|
android:layout_centerHorizontal="true"/>
|
|
</RelativeLayout>
|