使用图像xamarin android制作水平进度条

时间:2016-08-08 11:41:37

标签: android xamarin progress-bar

如何用图片更改进度条?我希望它看起来像this 我希望它几乎占据所有水平长度。

我想要这个结果http://www.bellaterreno.com/graphics/biz_processingbar/processingbar_blue_diagonal_sm_ani.gif

1 个答案:

答案 0 :(得分:0)

您可以在资源>中设置自定义进度条以创建其他XML。可绘制的文件夹。创建progressbar.xml文件并使用您自己的样式对其进行自定义。它看起来应该类似于:

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

    <!-- Define the BACKGROUND properties: colors, gradient, etc -->
    <item android:id="@android:id/background">
    <shape>
        <gradient
                android:startColor="#000001"
                android:centerColor="#0b131e"
                android:centerY="1.0"
                android:endColor="#0d1522"
                android:angle="270" />
    </shape>
   </item>

  <!-- Define the PROGRESS BAR properties: colors, gradient, etc -->
  <item android:id="@android:id/progress">
    <clip>
        <shape>
            <gradient
                android:startColor="#007A00"
                android:centerColor="#007A00"
                android:centerY="1.0"
                android:endColor="#06101d"
                android:angle="270" />
        </shape>
    </clip>
    </item>
</layer-list>
In your AXML file you have to define 'android:progressDrawable':

<ProgressBar
    android:progressDrawable="@drawable/progressbar"
...
/>

基于此stackoverflow帖子。 How to Customize a Progress Bar In Android

或在Xamarin中使用此信息

您可以使用自定义渲染器实现此目的。

Xamarin的James Montemagno有关于创建自定义循环进度条的良好指南。

https://blog.xamarin.com/using-custom-controls-in-xamarin-forms-on-android/

关于Xamarin.Forms的官方文档自定义渲染器可在https://developer.xamarin.com/guides/xamarin-forms/custom-renderer/

找到