android style合在一起,android-与ApplicationContext一起使用的充气机未应用主题/样式...

我有为TextView指定textColor为红色的主题。

我正在使用LayoutInflater实例化TextView。 问题在于,使用ApplicationContext创建充气器时,样式不会应用于TextView-颜色不是红色。 使用Activity创建LayoutInflater时,一切正常。

为什么会这样,如何解决?

/热水/values/styles.XML:

@style/MyTextView

#f00

AndroidManifest.xml:

android:icon="@drawable/icon"

android:label="@string/app_name"

android:theme="@style/MyTheme"

>

码:

public class A extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.test_a);

final LayoutInflater goodInflater = getInflater((Activity)this);

final LayoutInflater badInflater = getInflater(getApplicationContext());

final LinearLayout container = (LinearLayout)findViewById(R.id.container);

findViewById(R.id.add_with_appContext).setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

add(container, badInflater); // Creates gray TextView

}

});

findViewById(R.id.add_with_activity).setOnClickListener(new OnClickListener() {

@Override

public void onClick(View v) {

add(container, goodInflater); // Creates red TextView

}

});

}

private LayoutInflater getInflater(Context context) {

return (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

}

private void add(LinearLayout container, LayoutInflater inflater) {

inflater.inflate(R.layout.my_template, container, true);

}

}

/热水/layout/test_啊.XML

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="vertical">

android:text="Add with AppContext"

android:id="@+id/add_with_appContext"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

/>

android:text="Add with Activity"

android:id="@+id/add_with_activity"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

/>

android:id="@+id/container"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:orientation="vertical"

/>

/热水/layout/没有_template.XML:

xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

>

android:id="@+id/text"

android:text="Some text..."

android:layout_width="fill_parent"

android:layout_height="wrap_content"

/>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值