Questions tagged «imagebutton»

图像按钮是显示图像的按钮,与平台无关

18
如何使用透明的ImageButton:Android
<ImageButton android:id="@+id/previous" android:layout_width="wrap_content" android:layout_height="wrap_content" android:src="@drawable/media_skip_backward" android:background="@drawable/transparent"></ImageButton> 这就是我试图获得透明ImageButton以便将这些按钮放置在SurfaceView上的目的。但是,一旦在xml中包含透明行,Eclipse就会给我一个错误。 请帮忙。

16
jQuery UI对话框-缺少关闭图标
我正在使用自定义jQuery 1.10.3主题。我从主题滚筒下载了所有笔直的文件,但我没有故意更改任何内容。 我创建一个对话框,并得到一个空的灰色正方形,其中关闭图标应为: 我比较了页面上生成的代码: <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"> <spanid="ui-id-2" class="ui-dialog-title">Title</span> <button class="ui-dialog-titlebar-close"></button> </div> 到“ 对话框演示”页面上生成的代码: <div class="ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix"> <span id="ui-id-1" class="ui-dialog-title">Basic dialog</span> <button class="ui-button ui-widget ui-state-default ui-corner-all ui-button-icon-only ui-dialog-titlebar-close" role="button" aria-disabled="false" title="close"> <span class="ui-button-icon-primary ui-icon ui-icon-closethick"></span> <span class="ui-button-text">close</span> </button> </div> 编辑:代码的不同部分是由jQueryUI 生成的,不是我,所以我不能不编辑jqueryui js文件就添加span标签,这似乎是实现正常功能的错误/不必要的选择。 这是用于生成该部分代码的javascript: this.element.dialog({ appendTo: "#summary_container", …

3
可点击的ImageView和ImageButton之间的区别
我只是想知道被ImageView设置为可点击的与相比是否有显着差异ImageButton? 有什么理由要使用另一个?是否有一个上绘制任何限制ImageButton的是叶ImageView作为唯一可能的选择吗? 我很可能会失去一个按钮的任何功能,如果我选择一个点击ImageView过ImageButton?

8
在Android中的ImageButton中调整图像
我的活动中有6个ImageButton,我通过它们中的代码设置了图像(不使用xml)。 我希望它们覆盖按钮区域的75%。但是,当某些图像覆盖的区域较少时,有些图像太大而无法放入imageButton。如何以编程方式调整大小并显示它们?下面是屏幕截图 下面是xml文件 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:layout_marginBottom="5sp" android:layout_marginLeft="2sp" android:layout_marginRight="5sp" android:layout_marginTop="0sp" > <LinearLayout android:layout_height="0dp" android:layout_width="match_parent" android:layout_weight="1" android:orientation="horizontal"> <ImageButton android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/button_topleft" android:layout_marginBottom="5sp" android:layout_marginLeft="2sp" android:layout_marginRight="5sp" android:layout_marginTop="0sp" /> <ImageButton android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="1" android:id="@+id/button_topright" android:layout_marginBottom="5sp" android:layout_marginLeft="2sp" android:layout_marginRight="5sp" android:layout_marginTop="0sp" /> </LinearLayout> <LinearLayout android:layout_height="0dp" android:layout_width="match_parent" android:layout_weight="1" android:orientation="horizontal"> <ImageButton android:layout_height="match_parent" android:layout_width="0dp" …

10
如何在ImageButton上显示文本?
我有一个ImageButton,我想在上面显示文本和图像。但是当我尝试模拟器时: <ImageButton android:text="OK" android:id="@+id/buttonok" android:src="@drawable/buttonok" android:layout_width="match_parent" android:layout_height="wrap_content" /> 我得到图像但没有文本。如何显示文字?请帮我!

4
将Material Design触摸纹波应用到ImageButton?
我有一个imagebutton在单击时不会响应触摸动画,因为它是静态图像,与棒棒糖上的常规按钮不同,后者带有内置波纹效果。我想在图像上添加材质设计的波纹触摸效果,但似乎找不到实现它的方法。我可以在图像上设置彩色滤光片,但这不是波纹效果。我要尝试执行的一个示例是,当您将专辑封面图像保存在Google Play音乐中时,阴影波纹在图像上移动。

6
Android ImageButton处于选定状态?
如果我将ImageButton与背景选择器一起使用,是否可以更改状态以使其外观发生变化?现在,我可以按一下它来更改图像,但是似乎没有“突出显示”或“选定”或类似的状态可以让我随意切换其外观。 这是我的XML;仅在按下时会更改外观。 <selector xmlns:android="http://schemas.android.com/apk/res/android"> <item android:state_focused="true" android:state_pressed="false" android:drawable="@drawable/map_toolbar_details_selected" /> <item android:state_focused="true" android:state_pressed="true" android:drawable="@drawable/map_toolbar_details_selected" /> <item android:state_focused="false" android:state_pressed="true" android:drawable="@drawable/map_toolbar_details_selected" /> <item android:drawable="@drawable/map_toolbar_details" />



By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.