Android ImageButton 没有填充
目前,我的 imageButtons 显示的图像周围有非常不理想的填充。如何去掉填充并仅将图像作为按钮。
<ImageButton android:src="@drawable/defaultbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageButton android:src="@drawable/defaultbutton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
其次,如何添加这些图像按钮的链接以在浏览器中打开 onClick
Currently my imageButtons display an image with a very undesirable padding around them. How do I get rid of the padding and just have the image as the button.
<ImageButton android:src="@drawable/defaultbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<ImageButton android:src="@drawable/defaultbutton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
Secondly, How do I add links to these imagebuttons to open in the browser onClick
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试:
至于你问题的第二部分......在浏览器中打开什么?打开随机 URL?如果是这样...
Try:
As for part 2 of your question... open what in your browser? Open a random URL? If so...