Android の TextView には HTML で装飾付きのテキストを指定できます。 これを Xamarin.Adnroid (C#) でやるためには以下のようにコードで書いていたと思います。 var text = "これは <b><big>テスト</big></b> です。" var textView1 = FindViewById<TextView>(Resource.Id.textView1); textView1.TextFormatted = Html.FromHtml(text);