「Androidのシステムフォント」の版間の差分

提供:MonoBook
編集の要約なし
編集の要約なし
 
12行目: 12行目:
}
}
</source>
</source>
結果は端末により異なるようだ。


[[category: フォント]]
[[category: フォント]]
[[category: Android]]
[[category: Android]]

2022年9月29日 (木) 05:05時点における最新版

Androidのシステムフォントは以下のディレクトリに格納されている。

/system/fonts/

書き込みにはroot権限が必要だが、読み取りはできる。

Xamarin.Androidでファイルを列挙してみる。

var files = Directory.EnumerateFiles("/system/fonts/", "*.*", SearchOption.AllDirectories);
foreach (var file in files)
{
    Console.WriteLine(file);
}

結果は端末により異なるようだ。