Android Studio使用1按钮更改活动的背景主题

时间:2016-01-14 09:47:42

标签: android android-layout android-fragments android-intent android-activity

大家好,因为我为我的论文做了测验应用程序,我想添加一个商店来购买不同的主题。首先,我需要知道如何使用按钮设置背景?

@publisher = Publisher.find params[:id]
@publisher.digest_templates #-> returns all (including active)
@publisher.active_template  #-> returns only active

1 个答案:

答案 0 :(得分:0)

你好Tj Estrella Manzano RelativeLayout rel;

在button1.setOnClickListener中

写这个 的rel =(RelativeLayout的)findViewById(R.id.rel);

rel.setBackgroundColor(Color.BLUE);

这是更改背景颜色的代码。

如果要更改背景图像 那么你必须创建一个最终的Drawable

Drawable drawable = res.getDrawable(R.drawable.a); // a是存储在Drawable文件夹中的图像名称

然后是rel.setBackground(drawable);