タグ付けされた質問 「typeface」

30
AndroidでTextViewのfontFamilyを変更する方法
android:fontFamilyAndroidでを変更したいのですが、Androidで定義済みのフォントが表示されません。定義済みのものを選択するにはどうすればよいですか?自分でTypeFaceを定義する必要はありませんが、必要なのは、現在表示されているものとは異なるものだけです。 <TextView android:id="@+id/HeaderText" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_marginTop="52dp" android:gravity="center" android:text="CallerBlocker" android:textSize="40dp" android:fontFamily="Arial" /> 私がそこでやったことは本当にうまくいかないようです!ところでandroid:fontFamily="Arial"、愚かな試みでした!


6
Javaコードの「android:fontFamily =」sans-serif-lightに相当するものは何ですか?
私の質問は非常に簡単です: すべてのテキストビューで、現在属性を使用しています android:fontFamily="sans-serif-light" ポストHCデバイスでゴージャスな外観を提供します。 残念ながら、これはすべてのウィジェットで動作するわけではなく、私のスピナーの場合、アダプターを上書きする必要があります。 @Override public View getView(int position, View convertView, ViewGroup parent) { //You can use the new tf here. if(convertView == null || convertView.getTag() == null) { // new view - populate convertView = inflater.inflate(android.R.layout.simple_spinner_dropdown_item, parent, false); convertView.setTag(new Object()); } CheckedTextView spinner_text=(CheckedTextView) convertView.findViewById(android.R.id.text1); //Typeface should be set …
106 android  typeface 

7
iOSフォントのビジュアルリスト?
私はiOS 7のiOSフォントのリストを探しています。Appleの開発者サイトでリストを見つけました。各フォント名が書体で入力されている視覚的なリストを誰かが知っているのではないかと思っています。以前は1、2回見たことがありますが、最近見たのはiOS 5のもので、それ以来ずっと多くのものが追加されています。
102 ios  uifont  typeface 

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.