すべての公開記録

MonoBookの取得できる記録をまとめて表示しています。 記録の種類、実行した利用者 (大文字小文字は区別)、影響を受けたページ (大文字小文字は区別) による絞り込みができます。

記録
  • 2024年10月22日 (火) 02:34 Administrator トーク 投稿記録 がページ「.NET for AndroidでデバイスのSIMスロット数を取得する」を作成しました (ページの作成:「== 必要な権限 == * android.permission.READ_PHONE_STATE == 大雑把なコード == <source lang=csharp> var telephonyManager = GetSystemService(TelephonyService) as TelephonyManager; if (telephonyManager == null) throw new NotSupportedException(); // API レベルに応じて SIM スロット数を取得 int simSlotCount = 0; if (Android.OS.BuildVersionCodes.R <= Android.OS.Build.VERSION.SdkInt) {// API Level 30 (Android 11) 以上 simSlotCount = tel…」)