using System;
|
using Android.Graphics;
|
using Com.Hdl.Widget;
|
|
namespace Shared
|
{
|
public class HDLUtils
|
{
|
public static int RectCornerTopLeft = 1;
|
public static int RectCornerTopRight = 2;
|
public static int RectCornerBottomLeft = 4;
|
public static int RectCornerBottomRight = 8;
|
|
|
|
/// <summary>
|
/// 重启APP
|
/// </summary>
|
public static void RestartApp() {
|
|
HDLUtlisXM.RelaunchApp(Application.Activity, true);
|
|
}
|
|
/// <summary>
|
/// 设置原生控件库 authorities的值
|
/// </summary>
|
public static void SetAuthoritiesName(string name)
|
{
|
HDLUtlisXM.MAuthorityNAME = name;
|
}
|
|
///// <summary>
|
///// 生成二维码
|
///// </summary>
|
//public static Bitmap createQRCode(string url, int size = 500)
|
//{
|
// return HDLUtlisXM.CreateQRCode(url, size);
|
//}
|
|
|
|
}
|
}
|