相对布局中心的进度条

时间:2014-08-23 11:52:40

标签: android alignment relativelayout

<?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="wrap_content"
android:layout_marginTop="?android:attr/actionBarSize"
android:background="@drawable/stalker_background"
android:focusableInTouchMode="true" >


<ProgressBar 
    android:id="@+id/pb"
    android:layout_height="75dp"
    android:layout_width="75dp"
    android:layout_gravity="center"
    android:indeterminate="true"      
    />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<ScrollView 
    android:id="@+id/svProfile"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

<android.support.v4.view.ViewPager
                android:id="@+id/VPSlider"
                android:layout_width="match_parent"
                android:layout_height="175dp"
            />


            <android.support.v4.app.FragmentTabHost
                android:id="@android:id/tabhost"
                android:layout_width="match_parent"
                android:layout_height="match_parent" >

                <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical" >

                    <TabWidget
                    android:id="@android:id/tabs"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:orientation="horizontal" />

                    <FrameLayout
                    android:id="@android:id/tabcontent"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent" />

                </LinearLayout>

                </android.support.v4.app.FragmentTabHost>       

</LinearLayout>
</ScrollView>
</LinearLayout>

</RelativeLayout>

进度条出现在屏幕的一角,如何将其对齐在屏幕中央。我有相对的布局,我在屏幕上显示了一些事情之后删除了这个进度条,这就是为什么我需要在其他控件之上使用它。

2 个答案:

答案 0 :(得分:12)

试试这个..

android:layout_centerInParent="true"添加到ProgressBar,因为您的父级布局为RelativeLayout

<ProgressBar 
    android:id="@+id/pb"
    android:layout_height="75dp"
    android:layout_width="75dp"
    android:layout_gravity="center"
    android:indeterminate="true"      
    android:layout_centerInParent="true"
    />

答案 1 :(得分:2)

请尝试这种方式,希望这有助于您解决问题。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="?android:attr/actionBarSize"
    android:background="@drawable/stalker_background"
    android:focusableInTouchMode="true" >


    <ProgressBar
        android:id="@+id/pb"
        android:layout_height="75dp"
        android:layout_width="75dp"
        android:layout_centerInParent="true"
        android:indeterminate="true"/>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <ScrollView
            android:id="@+id/svProfile"
            android:layout_width="match_parent"
            android:layout_height="match_parent">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical" >

            </LinearLayout>
        </ScrollView>
    </LinearLayout>

</RelativeLayout>