AlexSJC 的博客

Xamarin.Android 更好地管理通知渠道

NotificationHelper using Android.Content; using Android.OS; using System.Reflection; public static class NotificationHelper { public static void

AlexSJC AlexSJC 发布于 2024-01-12

Xamarin.Android 请求忽略电池优化

<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS" /> if (Build.VERSION.SdkInt >= BuildVersionCodes.M) { Powe

AlexSJC AlexSJC 发布于 2023-11-12

Xamarin.Android 前台服务

public const string CHANNEL_ID = "default_channel"; public const string CHANNEL_NAME = "Default Channel"; public const int NOTIFICATION_ID = 10000; p

AlexSJC AlexSJC 发布于 2023-11-10

Xamarin 使用数据库

public class Database { private const string file = "database.db"; public static SQLiteConnection Connection { get; private set; } stati

AlexSJC AlexSJC 发布于 2023-09-26

Visual Studio 中 Xamarin.Android 设计器显示异常解决方式

打开选项页面。 取消勾选“启用加速渲染”。

AlexSJC AlexSJC 发布于 2023-08-15

Xamarin.Android 绑定服务

https://www.nuget.org/packages/Asjc.Android.ServiceHelper

AlexSJC AlexSJC 发布于 2023-08-12