相對佈局中只有兩個控制元件,一個居中View1,另外一個要在View1的左邊的方法
阿新 • • 發佈:2019-01-30
<RelativeLayout
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginBottom="3dp"
android:background="@color/hui" >
<TextView
android:id="@+id/titlePrint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/wenbo"
android:textColor="@color/white" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/titlePrint" >
<ProgressBar
android:id="@+id/loadingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/loadingpage_bg"
android:indeterminateDrawable="@drawable/animdraw"
android:indeterminateDuration="1500"
android:scaleType="fitCenter" />
</RelativeLayout>
android:id="@+id/top"
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_marginBottom="3dp"
android:background="@color/hui" >
<TextView
android:id="@+id/titlePrint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/wenbo"
android:textColor="@color/white" />
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_marginRight="10dp"
android:layout_toLeftOf="@+id/titlePrint" >
<ProgressBar
android:id="@+id/loadingBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/loadingpage_bg"
android:indeterminateDrawable="@drawable/animdraw"
android:indeterminateDuration="1500"
android:scaleType="fitCenter" />
</RelativeLayout>