gpt4 book ai didi

用于 xml 小部件的 Android 编程设置属性

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:43:56 26 4
gpt4 key购买 nike

在应用程序中,我可以简单地将 attr.xml 定义为 values 并将其用于设计布局。但是我不能将这个属性编程设置到小部件中,例如我有这个属性:

<declare-styleable name="ButtonTextStyle">
<attr name="font_button">
<enum name="consolas" value="0" />
<enum name="times" value="1" />
</attr>
</declare-styleable>

我可以通过以下方式将此属性用于 xml:

<com.sample.app.Widgets.ButtonTextStyle
android:id="@+id/btn_way_bill_click"
android:layout_width="fill_parent"
app:font_button="consolas">

现在我在项目中定义了一些 Button 程序,我想使用定义到 font_button 中的 consolas 字体:

button.setTextAppearance(context, R.attr.font_button);

但是我收到此代码的错误并且我无法解决问题,我定义了从 Button 扩展的自定义类,如下所示:

public class ButtonTextStyle extends Button {
private Context mContext;
public ButtonTextStyle(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
mContext = context;
init(attrs, defStyle);
}

public ButtonTextStyle(Context context, AttributeSet attrs) {
super(context, attrs);
mContext = context;
init(attrs,-1);
}

public ButtonTextStyle(Context context) {
super(context);
mContext = context;
init(null,-1);
}

private void init(AttributeSet attrs,int defStyle) {
if (!isInEditMode()) {
TypedArray a = mContext.obtainStyledAttributes(attrs,R.styleable.ButtonTextStyle, defStyle, 0);
String str = a.getString(R.styleable.ButtonTextStyle_font_button);
switch (Integer.parseInt(str)) {
case 0:
str = "fonts/consolas.ttf";
break;
case 1:
str = "fonts/times.ttf";
break;
}
setTypeface(FontManager.getInstance(getContext()).loadFont(str));
}
}
}

问题:

Expected resource of type style

我不能像设置 times font 那样将枚举设置为小部件

如何通过在 attr.xml 中定义的属性设置此自定义类的编程

更新:我的类添加按钮是下面的方法。我想以编程方式为其设置字体:

private void addButton(final CDialog owner, final Dialog dialog, final DialogButton dlgBtn) {
LinearLayout linearLayout = (LinearLayout) dialog.findViewById(R.id.tsw__layerButton);
LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, 70);
//layoutParams.setMargins(11, 0, 8, 0);

Button button = new Button(context);
if (buttonTheme != -1) {
button.setBackgroundResource(buttonTheme);
}
button.setPadding(0,2,0,0);
button.setGravity(Gravity.CENTER);
button.setText(buttonMsg[dlgBtn.ordinal()]);
button.setTextSize(14);
button.setTextColor(G.context.getResources().getColor(R.color.white_text));
button.setWidth(dpToPx(buttonWidth));
//button.setHeight(dpToPx(32));
button.setLayoutParams(layoutParams);

button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
dialog.dismiss();
if (dialogListener != null) {
dialogListener.onCloseDialog(owner, dlgBtn);
}
}
});
linearLayout.addView(button);
}

最佳答案

也许这篇文章能帮到你Android: Set Custom Attributes Programmatically and Via XML .请注意,应该在某处(例如在“AppTheme”中)为 R.attr.font_button 属性指定一个样式。因为它只是一个属性,而且它持有对值的引用

如果您在“AppTheme”中指定了样式:

ButtonTextStyle button = (TextView) findViewById(R.id.btn_way_bill_click);
Resources.Theme themes = getTheme();
TypedValue storedValueInTheme = new TypedValue();
if (themes.resolveAttribute(R.attr.font_button, storedValueInTheme, true))
button.setTextAppearance(storedValueInTheme.data);

或者如果您声明了自己的主题。可以声明如下

<resources>
<style name="ConsolasBtn" parent="@android:style/Widget">
<item name="font_button">consolas</item>
</style>
</resources>

然后您需要将这个主题应用到您的按钮上。尝试

ButtonTextStyle button = (TextView) findViewById(R.id.btn_way_bill_click);
button.setTextAppearance(this, R.style.ConsolasBtn); // *this* refers to Context

或者尝试将 R.style.ConsolasBtn 作为 defStyle 传递给构造函数 ButtonTextStyle(Context context, AttributeSet attrs, int defStyle)争论。

另见 Styles and Themes , Resources.Theme , TypedValue , attrs .

关于用于 xml 小部件的 Android 编程设置属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29691479/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com