在一个布局文件中,我想显示一个进度条和一个可滑动的webview。 如果我实现了滑动布局,则进度条会自动消失,并且无法显示。
问题是什么?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mlns="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.xy.MainActivity">
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progressBarCenter"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:visibility="visible"
android:background="#ff0303" />
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mlns="http://schemas.android.com/apk/res-auto"
android:id="@+id/swiper"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.xy.MainActivity">
<WebView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/webView"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
答案 0 :(得分:1)
这是因为SwipeRefreshLayout
涵盖ProgressBar
。在RelativeLayout
中,Xml中较低位置的那个意味着在Z轴上更高。
撤销订单应该有效。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mlns="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.xy.MainActivity">
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:mlns="http://schemas.android.com/apk/res-auto"
android:id="@+id/swiper"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.xy.MainActivity">
<WebView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/webView"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
</android.support.v4.widget.SwipeRefreshLayout>
<ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/progressBarCenter"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:visibility="visible"
android:background="#ff0303" />
</RelativeLayout>