问题标签 [android-imagebutton]

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 投票
1 回答
1596 浏览

android - 如何在 ListView 适配器的 ImageButton 中动态显示捕获的图像?

我有一个listview. 其中包含ImageButton,ButtonTextView。如果我按imagebutton,它将进入相机。我不知道如何在其中设置这些图像imagebutton。我的代码在这里。任何人都可以帮助我。

0 投票
1 回答
1563 浏览

android - 在方向更改时旋转 ImageButton

我有一个图像按钮,当设备的方向改变时我想旋转它。如何使用一些动画或过渡来旋转图像?

0 投票
1 回答
69 浏览

android - 如何在单击一次 ImageButton 时更改多个 ImageButton 的 src

我知道如何ImageButton在单击时更改一个 src,但是我当时也想更改另一个的 src ImageButton。我不知道如何访问未ImageButton点击的内容。我知道是身份证。

编辑:提一下我将有多个按钮可能会很好,所以我需要更改的不仅仅是某个按钮。我需要更改的两个都会有所不同。

0 投票
5 回答
1820 浏览

android - TextView 如何在 LinearLayout 中的 ImageButton 旁边对齐

我试图TextViewImageButton. 但是,TextView并没有很好地对齐。我希望它从与ImageButton.

这是它现在的样子:

在此处输入图像描述

这是我的布局:

0 投票
2 回答
580 浏览

android - Android Activity中带有背景的PNG图像按钮

当我在活动中使用 ImageButton 时,它会出现这样的背景颜色:

图像按钮

我该怎么做才能去除这种深色?

0 投票
1 回答
1633 浏览

android - 如何将图像添加到编辑文本字段中以及如何将其保存为android中的整个编辑文本图像

在我的应用程序中,我将出现一个屏幕,在该屏幕中,我将放置编辑文本字段,在该编辑文本字段下方,我将使用选择和保存按钮,在编辑文本字段内,我将输入一些文本并在光标指向那个地方之后,我必须添加图像,我想使用选择按钮从图库中获取图像,然后再次将图像放入编辑文本字段中,然后我想输入一些东西我要单击保存按钮,将编辑文本字段作为图像保存到图库中,这是我在 Google 中搜索过的其他内容,但我找不到任何解决方案,请任何人帮助我。

下面的图像我想保存为图像视图,我需要再次将图像添加到编辑文本字段中,光标指向的地方我必须从图库中选择图像

0 投票
2 回答
436 浏览

java - Android-Eclipse 找不到 ImageButton 类

我对 Java/Eclipse 相当有经验,但我对 Android 开发完全陌生,到目前为止,它被证明是一个相当奇怪的野兽。我目前正在尝试创建一个带有两个图像按钮的应用程序。我的 XML 如下:

这似乎是正确的,但 ImageButtons 在图形布局选项卡中无法正确呈现,并且有一条消息显示“找不到以下类:- ImageButton(更改为 android.widget.ImageButton,修复构建路径,编辑 XML)”。

在网上看了一会,发现这个问题在 StackOverflow 上已经弹出了好几次,但我都找不到满意的答案。最常见的答案是清理项目,但这对我没有任何帮助。有什么建议么?

0 投票
2 回答
586 浏览

android - 从另一个活动设置背景图像

我认为这是一项容易的工作,但事实并非如此。我创建了一个子活动,其中有这些 ImageButtons 处理我在 MainActivity 中的背景图像的更改。

层次结构是:Main Activity > Settings Activity > ChangeStyle Activity

在我的 ChangeStyle 活动中,我尝试:

日志猫:

我应该改变什么?

0 投票
1 回答
1090 浏览

android - Android - 样式按钮图像视图 - 单击时移除蓝色突出显示

我为图像按钮设计了由两张图像组成的自己的图形 - 一张聚焦,一张不聚焦。我在可绘制文件夹中的布局和 XML 文件中有以下按钮:

.

当我单击按钮时,它会正确切换两个图像,但问题是我还看到一个部分透明的蓝色矩形,通常会突出显示按钮单击。我怎样才能摆脱这个蓝色突出显示,这样当我的按钮被点击时,唯一发生的事情就是两个图像之间的切换?

先感谢您 :)

0 投票
2 回答
107 浏览

android - Changing Android imageButton draws new image behind old image

I am writing a program which deals with playing cards. Here, I am trying to show the player's hand. I have six imageButtons sixCard0 -- sixCard5 which will each display one card from the player's hand. Each has its default image (of a question-mark card) set in xml:

I want to change this image to an image representing the card that is already in the player's hand when the activity starts. The cards are kept in CribbageApplication.cardList. In the activity's onCreate(...) I have:

Accessing these values is not where I am having a problem. My problem is that when I run the app, the default image is still displayed on the imageButtons. See: http://s23.postimg.org/cbmxchonv/Screenshot_2014_05_28_22_15_25_1.png

In debugging, I decided to use a smaller image as the imageButton's default image. (In this case it is an icon with text that reads "Set Hand" which I sourced from elsewhere in my program.) Now when I run the app you can clearly see the default "Set Hand" icon there with the new larger card image behind it! See: http://s12.postimg.org/3ytgenaz1/Screenshot_2014_05_28_21_48_10_1.png

Can someone please tell why this is happening?

EDIT: I have fixed the problem. I should be using setImageResource(...) instead of setBackgroundResource(...). In the example above, a typecast is required to call this function: