以编程方式创建具有特定样式的ImageView

时间:2010-07-07 03:08:22

标签: android

我想以编程方式执行此操作:

<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,但我不完全确定。

1 个答案:

答案 0 :(得分:0)

我找到了解决问题的方法。

View v = new ImageView(getContext());
v.setLayoutParams(new LayoutParams(1, LayoutParams.FILL_PARENT));
v.setBackgroundColor(getContext().getResources().getColor(R.color.title_separator));

不过,我想有办法设定风格。