6

我有一个非常奇怪的问题 - 我为进度条定义了一个可绘制的自定义进度,并且

有时它显示,有时它不显示。

我尝试清理我的项目,重新启动 Eclipse,甚至重新启动计算机。

它仍然发生。

这是进度可绘制的xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item android:id="@android:id/background">
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <corners android:radius="5dp" />
    <gradient
        android:startColor="#6f7754"
        android:endColor="#858762"
        android:angle="90"/>
</shape>
</item>

<item android:id="@android:id/secondaryProgress">
<clip>
    <shape 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">

        <corners android:radius="5dp" />
        <gradient
                android:startColor="#ffba00"
                android:endColor="#af6c03"
                android:angle="90"/>
    </shape>
</clip>
</item>

<item android:id="@android:id/progress">
<clip>
    <shape 
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:shape="rectangle">

        <corners
            android:radius="5dp" />
        <gradient
            android:startColor="#ffba00"
            android:endColor="#af6c03"
            android:angle="90" />
    </shape>
</clip>

这是我使用它的xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:layout_marginBottom="2dp"
android:background="@drawable/quick_action_item_btn">

<ImageView
    android:id="@+id/icon" 
    android:layout_width="21dp" 
    android:layout_height="21dp"
    android:scaleType="centerInside"/>

<ProgressBar 
    android:id="@+id/progress"
    android:layout_width="20dp"
    android:layout_height="4dp"
    android:layout_marginTop="2dp"
    style="@android:style/Widget.ProgressBar.Horizontal"
    android:progressDrawable="@drawable/achievement_progress_bar"/>

</LinearLayout>
4

3 回答 3

8

try with this

android:indeterminateDrawable="@drawable/yourXML"

it is working for me..

于 2012-11-08T11:56:37.513 回答
1

它对我来说工作正常。只需将您的 indeterminateDrawable 设置为您的 custum xml 文件。应该没问题..

于 2012-11-12T05:13:14.573 回答
0

也许这是一个与这个类似的问题...... SharedPreferences.onSharedPreferenceChangeListener 没有被一致地调用

自定义 xml 是否定义为活动的变量?如果没有,可能它正在被垃圾收集器收集。我的建议是使其成为类(活动类)的字段变量。

于 2012-11-04T12:26:54.093 回答