我都含有progressbar
和加載textview
..我一個relativelayout
需要在相對layout.But其未來更向右不是在中心的中心progressbar
和文本視圖,錐。下面是我的代碼..查看在該中心在RelativeLayout的
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="26dp"
android:layout_gravity="bottom"
android:background="@drawable/border">
<ProgressBar
style="?android:attr/progressBarStyleSmall"
android:id="@+id/progressBar"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_centerInParent="true"
android:layout_centerHorizontal="true" />
<TextView
android:id="@+id/TextViewProgress"
android:text="Loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16dp"
android:layout_toRightOf="@+id/progressBar"
/>
也許問題是與你的RelativeLayout的容器。 RelativeLayout本身是否與其容器中的對齊? – peekler
首先,將您的relativaLayout的高度更改爲 'match_parent'而不是'26dp',然後添加布局的完整xml代碼 – Houcine
@Houcine:Thanks.but我需要控制相對佈局的高度。我有一個網格視圖,下面我添加這個相對佈局在屏幕的底部.. – user1340801