问题标签 [android-button]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
5 回答
152788 浏览

android - 通过 XML 单击时使 Android 按钮更改背景

有没有办法为要应用的 XML 文件中的 Button 指定替代背景图像/颜色onClick,还是我必须在Button.setBackground()其中做一个onClickListener

0 投票
15 回答
304545 浏览

android - 如何在 Android 中删除按钮或使其不可见?

如何删除 Android 中的按钮,或使其不可见?

0 投票
27 回答
971456 浏览

android - 如何在按钮单击时开始新活动

在 Android 应用程序中,当单击另一个 Activity 中的按钮时,如何启动新的 Activity (GUI),以及如何在这两个 Activity 之间传递数据?

0 投票
13 回答
581634 浏览

android - 如何禁用Android按钮?

我创建了一个包含两个按钮的布局,下一个和上一个。在按钮之间,我生成了一些动态视图。因此,当我第一次启动应用程序时,我想禁用“上一个”按钮,因为不会有任何以前的视图。当没有更多视图可显示时,我还想禁用“下一步”按钮。反正有没有禁用按钮?

示例布局的屏幕截图

0 投票
1 回答
512 浏览

android - How to specify the image's size for the left-image of a button?

I would like to put an image on a Button with some text, like:

We can do this with Button, and specify the left Drawable, but it uses the "intrinsic" size of the drawable. If I understand correctly, this won't work across different density devices. If my image is 32x32 pixels, it will look really small on hdpi devices. Is there any way to specify the width and height of the drawable, in dp, so that it will take the same amount of space on different devices?

0 投票
2 回答
5652 浏览

android - Android:按钮不显示在布局中

我很困惑为什么当我使用这个布局时没有显示名为“btnAdd”的按钮。我已经尝试过 LinearLayout 和当前的 RelativeLayout 但它在两者中都是不可见的。

0 投票
5 回答
208617 浏览

android - 安卓自定义按钮;改变文字颜色

我制作了一个按钮,可以通过这种方式更改不同状态下的背景可绘制对象:

这里的问题是我也试图改变 textColor 就像我对 drawable 所做的那样,但我做不到。我已经尝试过 android:textColor 和 android:color 但是第一个不起作用,而秒数改变了我的背景。

下一个代码是我布局的一部分。关于文本颜色,它仅适用于正常状态的文本颜色,因此在按下时不会将其更改为白色

有人有线索吗?

0 投票
1 回答
2557 浏览

android - 如何在图像上相对放置透明按钮?

我正在寻找一种在 Android 中如何在(背景)图像上放置一些透明按钮的方法,以便我可以很好地控制按钮的位置,并且如果屏幕更大,它们也会保持原样。

正如您可以想象的那样,图像还包含按钮艺术......

最好的办法是如果我可以使用百分比来定位按钮,但遗憾的是这在 Android 中是不可能的。

这是我当前的代码基础:

作为替代方案,我也可以提取按钮艺术并将它们放置在图像上,但这会导致同样的问题,如果按钮不是“线性”顺序,我如何控制位置,即相当随机.

0 投票
2 回答
44009 浏览

android - android - 如何使按钮闪烁?

有什么办法,在代码中,使按钮不断闪烁,然后在按下时停止闪烁?

0 投票
2 回答
836 浏览

android - 如何从主屏幕创建新屏幕?

当我点击“报告” 时,我想创建一个新屏幕Button。在那个新屏幕上,我想显示项目列表。我试过了,但失败了。我创建了一个新Activity类和一个新xml文件。

公共类报告扩展 MainActivity {

MainActivity.java

有没有其他方法可以创建新screen的,请提供任何其他方法来创建它。