如何在滚动视图中为gravilty中心提供进度条?

时间:2016-11-14 07:33:19

标签: android android-layout android-studio

我不知道我的代码有什么问题我无法将进度条中心放到屏幕上。这是我的XML代码我只想在加载webWiew页面之前放入进度条。所有事情都很好,但进度条没有集中。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/app_bar_aboutus">

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

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="20dp"
            app:srcCompat="@drawable/pinnainfotech_logo" />


        <WebView
            android:id="@+id/webview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"


            android:layout_marginTop="0dp" />
        <ProgressBar
            android:layout_height="wrap_content"
            android:layout_width="60dp"


            android:gravity="center_vertical|center_horizontal"


            android:id="@+id/progressBar1"/>



    </LinearLayout>



</ScrollView>

1 个答案:

答案 0 :(得分:1)

保持您的进度条不在滚动视图中 原因:滚动视图时,进度条应始终位于中心。

我已经编辑了你的xml视图,它看起来像这样。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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">
<ProgressBar
    android:id="@+id/progressBar1"
    android:layout_width="60dp"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true" />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerHorizontal="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

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

        <ImageView
            android:id="@+id/imageView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="20dp"
            app:srcCompat="@drawable/pinnainfotech_logo" />

        <WebView
            android:id="@+id/webview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="0dp"
            android:gravity="center" />
    </LinearLayout>
</ScrollView>