点击时更改背景图像 - Android

发布于 2024-10-22 22:04:58 字数 138 浏览 1 评论 0原文

我正在尝试编写一个基本应用程序,当在任何地方点击手机时,背景图像都会发生变化。 如果有人可以将我链接到有关如何执行此操作的良好教程或有一些我可以使用的代码片段,我将不胜感激。

是否可以在 xml 中对其进行编码,或者是否需要在 java 中完成?

I am trying to write a basic app that when the phone is tapped anywhere, the background image changes.
If anyone could link me to a good tutorial on how to do this or have some code snippits i could use it would be greatly appreciated.

Also is this possilble to code this in the xml or does it need to be done in java?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疑心病 2024-10-29 22:04:58

将 onClick 事件添加到布局并在侦听器中更改背景。

在 xml

<LinearyLayout android:layout_height="FILL_PARENT"
    android:layout_width="FILL_PARENT" 
    android:onClick="onClick" />

和您的活动中

public void onClick(View v) {
    v.setBackgroundResource(R.drawable.someDrawable);
}

Add an onClick event to the layout and in the listener, change the background.

in xml

<LinearyLayout android:layout_height="FILL_PARENT"
    android:layout_width="FILL_PARENT" 
    android:onClick="onClick" />

and in your activity

public void onClick(View v) {
    v.setBackgroundResource(R.drawable.someDrawable);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文