<?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"
android:background="#fff">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:orientation="vertical"
android:gravity="center_horizontal"
android:weightSum="1"
>
<ImageView
android:id="@+id/downbg_top"
android:scaleType="fitXY"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:adjustViewBounds="true"
android:src="@drawable/down_bg"
/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="1"
android:orientation="vertical"
>
<!-- 用一个空的view来作为百分比占位 这样下方的元素就可以marginTop为百分比了 -->
<View
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight=".72"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:weightSum="1"
>
<ProgressBar
android:id="@+id/d_progress"
android:layout_width="0dp"
android:layout_weight=".9"
android:layout_height="8dp"
android:layout_gravity="center"
android:max="100"
android:progress="0"
style="?android:attr/progressBarStyleHorizontal"
android:progressDrawable="@drawable/progressbar_bg"
/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
关键在这 <!-- 用一个空的view来作为百分比占位 这样下方的元素就可以marginTop为百分比了 -->