作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 main.xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FFFFFF"
>
<ImageButton android:background="@null" android:layout_gravity="center_vertical|center_horizontal|center"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/sample" android:id="@+id/pressThisButton" android:layout_y="40px" android:layout_x="20px"></ImageButton>
</FrameLayout>
在框架布局中,我有一个包含按钮 pressThisButton 的 View v。
按下按钮时,我可以更改 View 中按钮周围的填充背景的颜色——但不能更改整个屏幕的背景——使用
private OnClickListener buttonClickListener = new OnClickListener()
{
public void onClick( View v )
{
v.setBackgroundColor(0xffff0000);
在 FrameLayout 中有没有办法同时更改 View 背景和整个屏幕颜色?
感谢您的宝贵时间。
最佳答案
您可以使用 findViewById
获取 FrameLayout
并在其上设置背景颜色。
关于安卓。如何动态更改整个 FrameLayout 的颜色而不仅仅是 View 背景的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4673770/
我是一名优秀的程序员,十分优秀!