我想在进度栏中添加一个按钮。
场景是:-
1) I want To search a contact through Application.
2) During the Search I will show Progress Bar.
3)Can I add cancel button in the Progresss Bar.
提前谢谢。拉杰。Android开发人员。
我进行了进度条自定义(自定义呈现器),以更改iOS和Droid中的进度条颜色,如下所示
PCL中的自定义进度条类:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace App2
{
public class ColorProgressBar : ProgressBar
{
public static BindableProp
我正在使用Android中的进度条,XML声明如下:
<ProgressBar
android:id="@+id/progress"
style="?android:attr/progressBarStyleHorizontal"
android:progressDrawable="@color/green" <!-- See below about this line -->
android:max="10000"
andro