38 lines
1.7 KiB
XML
38 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.RoundedImageView
|
|
android:id="@+id/portrait"
|
|
android:background="@drawable/bg_home_head"
|
|
android:padding="@dimen/home_head_padding"
|
|
android:layout_width="@dimen/home_head_width"
|
|
android:layout_height="@dimen/home_head_height"
|
|
android:layout_marginLeft="@dimen/home_head_margin_left"
|
|
android:layout_marginTop="@dimen/home_head_margin_top"
|
|
android:scaleType="fitCenter"
|
|
app:riv_border_color="@color/bg_white"
|
|
app:riv_border_width="@dimen/home_head_border"
|
|
app:riv_corner_radius="@dimen/home_head_corner"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_12sp"
|
|
android:textColor="@color/theme_txt"
|
|
android:ellipsize="end"
|
|
android:id="@+id/name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/home_name_margin"
|
|
android:maxLines="1"
|
|
android:layout_toRightOf="@+id/portrait"/>
|
|
<ProgressBar
|
|
android:id="@+id/level"
|
|
android:layout_width="@dimen/home_level_width"
|
|
android:layout_height="@dimen/home_level_height"
|
|
android:layout_marginTop="@dimen/home_level_margin"
|
|
android:progress="0"
|
|
android:progressDrawable="@drawable/progress_drawable"
|
|
android:layout_below="@+id/name"
|
|
android:layout_alignLeft="@+id/name"
|
|
style="?android:attr/progressBarStyleHorizontal"/>
|
|
</merge>
|