Android:隐藏自定义进度条的角落

时间:2014-07-20 07:35:06

标签: android progress-bar android-progressbar

我正在尝试设计自定义进度条但无法隐藏其角落。我试图突出角落附近的白色斑块,用黑色圆圈突出显示。

enter image description here

我尝试了以下代码,但它无法正常工作

customProgressbar.getWindow().setBackgroundDrawable(new ColorDrawable(0));

这是我的可绘制文件

<shape xmlns:android="http://schemas.android.com/apk/res/android" >

<solid android:color="@color/pale_orange" />
<stroke android:color="@android:color/transparent"/>
<corners
    android:bottomLeftRadius="10dp"
    android:bottomRightRadius="10dp"
    android:topLeftRadius="10dp"
    android:topRightRadius="10dp" />

<padding
    android:bottom="3dp"
    android:left="3dp"
    android:right="3dp"
    android:top="3dp" />
</shape>

这是我的XML布局文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical" >

<RelativeLayout
    android:background="@drawable/progressbar_background"
    android:layout_centerInParent="true"
    android:layout_width="100dp"
    android:layout_height="100dp" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="5dp"
        android:layout_marginBottom="10dp"
        android:text="Loading.."
        android:textColor="@color/white" />

    <ProgressBar
        android:id="@+id/progressBar1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:layout_centerHorizontal="true" />

</RelativeLayout>

</RelativeLayout>

请帮助我们找到解决方案。非常感谢!

2 个答案:

答案 0 :(得分:1)

<强>问题:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:orientation="vertical" >

正如您所见,您的父RelativeLayout的背景颜色为白色,因此您可以从上面的示例图像中获得白色背景。

<强>溶液

RelativeLayout的背景颜色设置为透明以删除白色背景

android:background="@android:color/transparent"

答案 1 :(得分:0)

我认为你应该在相对布局中替换这一行

android:background="@color/white"
for
android:background="@android:color/transparent"