2

在我的应用程序中,我正在实施5 different Custom App Themes.

我为这些我创建的主题使用了 5 种不同的字体,CustomTextview它们扩展了Textview. 以下是它的创建格式。

public class CustomFontTextView extends TextView {
private static final String CUSTOM_FONT = "Custom-Regular.ttf";
private static final String TAG = CustomFontTextView.class.getName();

public CustomFontTextView(Context context) {
    super(context);

    if (android.os.Build.VERSION.SDK_INT < 14) {
        setCustomFont(context, CUSTOM_FONT);
    }
}

public CustomFontTextView(Context context, AttributeSet attrs) {
    super(context, attrs);

    if (android.os.Build.VERSION.SDK_INT < 14) {
        setCustomFont(context, CUSTOM_FONT);
    }
}

public CustomFontTextView(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);

    if (android.os.Build.VERSION.SDK_INT < 14) {
        setCustomFont(context, CUSTOM_FONT);
    }    
}

public boolean setCustomFont(Context ctx, String fontFile) {
    try {
        setTypeface(Typeface.createFromAsset(ctx.getAssets(), fontFile));       
        return true;

    } catch (Exception e) {
        Log.e(TAG, "Could not get typeface: "+e.getMessage());
        return false;
    }
}

}

我在 XML 布局中使用自定义文本视图。

    <com.myapp.android.fonts.CustomFontTextView
    android:id="@+id/Text_name"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"

    android:text="@string/my_text_content"
    android:textColor="@android:color/white"
    android:textSize="22sp" />

但是为了实现不同的主题,我必须找到一些方法来根据选择的主题改变我的所有文本视图。

有什么方法可以在我的主题中设置字体,

      <style name="MyCustomTheme" parent="android:style/Theme">
               ..............   ......................
             ...........     ...................
         <item name="android:textColorPrimary">#000000</item>
         <item name="android:buttonStyle">@style/MyCustomButton</item>
      </style>

我想在不干扰代码的情况下实现这一点,因为涉及到很多 UI 组件。

4

1 回答 1

1

为字体创建一个自定义属性并将其包含在样式中。在您的 CustomView 类中,访问此属性并相应地设置字体。

检查创建视图类以获取更多详细信息。

于 2012-12-11T07:28:06.613 回答