Android进度条不显示在黑暗的背景上

时间:2014-01-10 13:40:10

标签: android

我有一个照片库,可以在ViewPager中显示照片。

详细布局具有深色背景,并包含我在完全下载图像时隐藏的ProgressBar。适用于我的Nexus Android 4.4。

在HTC Desire Android 2.2上,在深色背景下无法看到ProgressBar,但如果我将ProgressBar本身的背景设置为白色,我可以看到它正确显示和隐藏。它还可以在背景为白色的其他布局中正常显示。

如何让ProgressBar在2.2的深色背景下出现?

这是我的布局;

photo_detail_pager.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
    <android.support.v4.view.ViewPager
        android:id="@+id/pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />
</LinearLayout>

photo_detail.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:background="@android:color/background_dark">
    <ProgressBar
        android:id="@+id/loader"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        />
    <ImageView
        android:id="@+id/photo"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        />
</RelativeLayout>

2 个答案:

答案 0 :(得分:1)

您可以尝试 style="@android:style/Widget.ProgressBar.Inverse"。虽然默认值应该显示在深色背景上,而逆向显示为浅色背景,但api级别10及以下可能会以不同方式对待它。您的主题也可能会影响配色方案。

答案 1 :(得分:0)

好吧好像是与主题有某种冲突。

我为应用程序安装了android:theme =“@ style / Theme.AppCompat.Light.DarkActionBar”。

我将照片库活动的主题设置为android:theme =“@ style / Theme.AppCompat”

在Fragment中,强制ProgressBar到前面:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    ViewGroup rootView = (ViewGroup) inflater.inflate(R.layout.photo_detail, container, false);

    loader = (ProgressBar) rootView.findViewById(R.id.loader);
    loader.bringToFront();

    // other stuff...
}

在Activity中,明确将ActionBar背景设置为黑暗以摆脱全息蓝线:

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.photo_detail_pager);

    getSupportActionBar().setBackgroundDrawable(getResources().getDrawable(R.drawable.abc_ab_solid_dark_holo));

    // other stuff...
}