我是靠谱客的博主 呆萌吐司,最近开发中收集的这篇文章主要介绍android 设置样式,Android:以编程方式设置视图样式,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

非提供的答案是正确的。

您可以通过编程方式设置样式。

简短的回答是看看[http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/5.1.1_r1/android/content/Context.java#435]

答案很长。这是我的代码片段,以编程方式为您的视图设置自定义样式:

1)在styles.xml文件中创建样式

#39445B

#8D5AA8

不要忘记在attrs.xml文件中定义自定义属性

我的attrsl.xml文件:

请注意,您可以使用任何名称作为您的样式(我的CustomWidget)

现在让我们以编程方式将样式设置为窗口小部件这是我的简单小部件:

public class StyleableWidget extends LinearLayout {

private final StyleLoader styleLoader = new StyleLoader();

private TextView textView;

private View divider;

public StyleableWidget(Context context) {

super(context);

init();

}

private void init() {

inflate(getContext(), R.layout.widget_styleable, this);

textView = (TextView) findViewById(R.id.text_view);

divider = findViewById(R.id.divider);

setOrientation(VERTICAL);

}

protected void apply(StyleLoader.StyleAttrs styleAttrs) {

textView.setTextColor(styleAttrs.textColor);

divider.setBackgroundColor(styleAttrs.dividerColor);

}

public void setStyle(@StyleRes int style) {

apply(styleLoader.load(getContext(), style));

}

}

布局:

android:id="@+id/text_view"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:textSize="22sp"

android:layout_gravity="center"

android:text="@string/styleble_title" />

android:id="@+id/divider"

android:layout_width="match_parent"

android:layout_height="1dp"/>

最后是StyleLoader类的实现

public class StyleLoader {

public StyleLoader() {

}

public static class StyleAttrs {

public int textColor;

public int dividerColor;

}

public StyleAttrs load(Context context, @StyleRes int styleResId) {

final TypedArray styledAttributes = context.obtainStyledAttributes(styleResId, R.styleable.CustomWidget);

return load(styledAttributes);

}

@NonNull

private StyleAttrs load(TypedArray styledAttributes) {

StyleAttrs styleAttrs = new StyleAttrs();

try {

styleAttrs.textColor = styledAttributes.getColor(R.styleable.CustomWidget_customTextColor, 0);

styleAttrs.dividerColor = styledAttributes.getColor(R.styleable.CustomWidget_customDividerColor, 0);

} finally {

styledAttributes.recycle();

}

return styleAttrs;

}

}

您可以在[https://github.com/Defuera/SetStylableProgramatically]找到完整的工作示例

最后

以上就是呆萌吐司为你收集整理的android 设置样式,Android:以编程方式设置视图样式的全部内容,希望文章能够帮你解决android 设置样式,Android:以编程方式设置视图样式所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(55)

评论列表共有 0 条评论

立即
投稿
返回
顶部