我想以编程方式执行此操作:
<ImageView style="@style/TitleBarSeparator" />
TitleBarSeparator
的位置:
<style name="TitleBarSeparator">
<item name="android:layout_width">1px</item>
<item name="android:layout_height">fill_parent</item>
<item name="android:background">@color/title_separator</item>
</style>
我试过了:
new ImageView(getContext(), null, R.style.TitleBarSeparator);
但它不起作用。
我猜错误来自于传递null为AttributeSet
,但我不完全确定。
答案 0 :(得分:0)
我找到了解决问题的方法。
View v = new ImageView(getContext());
v.setLayoutParams(new LayoutParams(1, LayoutParams.FILL_PARENT));
v.setBackgroundColor(getContext().getResources().getColor(R.color.title_separator));
不过,我想有办法设定风格。