使用进度条作为imageview的边框

时间:2015-12-25 17:08:48

标签: android

我想在imageview中添加一个进度条。我尝试使用以下代码:

topList

circular_progress_bar.xml:

ALTER TABLE mytbl ADD UNIQUE (Time, Fish);

circle_shape.xml:

<de.hdodenhof.circleimageview.CircleImageView
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/image"
    android:layout_width="64dp"
    android:layout_height="64dp"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="3dp"
    android:src="@drawable/defaultprofile" />
<ProgressBar
    android:id="@+id/progressBar"
    android:layout_width="64dp"
    android:layout_height="64dp"
    android:indeterminate="false"
    android:progressDrawable="@drawable/circular_progress_bar"
    android:background="@drawable/circle_shape"
    style="?android:attr/progressBarStyleHorizontal"
    android:max="100"
    android:progress="65"
    android:layout_alignParentTop="true"
    android:layout_alignLeft="@+id/image"
    android:layout_alignStart="@+id/image" />

结果:

enter image description here

我该如何解决?进度条应该看起来像imageview的边框。我必须删除填充。

1 个答案:

答案 0 :(得分:1)

所以你的观点现在看起来像那样:

enter image description here

所有你不需要做的就是改变两个视图的高度和重量 - 不同的

编辑:现在你有了这个:

enter image description here

根据http://developer.android.com/intl/es/guide/topics/resources/drawable-resource.html

删除此行

android:innerRadiusRatio="2.5"

解决方案:我已经更改了一些文件:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="#00000000"
                android:padding="10dp"
                android:id="@+id/mainLayout">

    <de.hdodenhof.circleimageview.CircleImageView
        android:id="@+id/image"
        android:layout_width="65dp"
        android:layout_height="65dp"
        android:src="@color/colorAccent"/>

    <ProgressBar
        android:id="@+id/progressBar"
        android:layout_width="65dp"
        android:layout_height="65dp"
        android:padding="1dp"
        android:progressDrawable="@drawable/circular_progress_bar"
        android:background="@drawable/circle_shape"
        android:style="?android:attr/progressBarStyleHorizontal"
        android:max="100"
        android:progress="65"
        android:layout_alignLeft="@+id/image"
        android:layout_alignTop="@+id/image"        />
</RelativeLayout>

循环进度条:

<?xml version="1.0" encoding="utf-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
        android:fromDegrees="270"
        android:toDegrees="270">
    <shape
        android:innerRadius="32dp"
        android:shape="ring"
        android:thickness="1dp"
        android:useLevel="true"><!-- this line fixes the issue for lollipop api 21 -->

        <gradient
            android:angle="0"
            android:endColor="#007DD6"
            android:startColor="#007DD6"
            android:type="sweep"
            android:useLevel="false" />
    </shape>
</rotate>

圆形

<?xml version="1.0" encoding="utf-8"?>
<shape
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="ring"
    android:thickness="1dp"
    android:innerRadius="32dp"
    android:useLevel="false">

    <solid android:color="#CCC" />

</shape>

它看起来像:

enter image description here

希望有所帮助