这是我的布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<com.gc.materialdesign.views.ProgressBarCircularIndeterminate
android:id="@+id/progressBarCircularIndeterminate"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@color/actionbar_green"
android:elevation="10dp"
android:layout_above="@+id/splash_screen_image"
android:gravity="center_vertical|center_horizontal"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
<ImageView
android:id="@+id/splash_screen_image"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
问题是circleprogressbar不会出现在imageview中,但是当我删除imageview时,会出现circleprogressbar。
答案 0 :(得分:1)
图片视图覆盖了进度条,重新排序了像
这样的视图.tabs{
height:auto !important;
}
在你的活动中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/splash_screen_image"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<com.gc.materialdesign.views.ProgressBarCircularIndeterminate
android:id="@+id/progressBarCircularIndeterminate"
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@color/actionbar_green"
android:elevation="10dp"
android:layout_above="@+id/splash_screen_image"
android:gravity="center_vertical|center_horizontal"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
答案 1 :(得分:0)
因为ProgressBarCircularIndeterminate低于ImageView。
您可以更改它们的位置以获得您想要的效果。 就像这样:
<RelativeLayout
...>
<ImageView .../>
<ProgressBarCircularIndeterminate .../>
</RelativeLayout>