Android ImageButton 没有填充

发布于 2024-11-16 00:05:31 字数 439 浏览 3 评论 0原文

目前,我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

家住魔仙堡 2024-11-23 00:05:31

尝试:

<ImageButton android:background="@drawable/defaultbutton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<ImageButton android:background="@drawable/defaultbutton2" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" /> 

至于你问题的第二部分......在浏览器中打开什么?打开随机 URL?如果是这样...

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.com"));
startActivity(intent);

Try:

<ImageButton android:background="@drawable/defaultbutton" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />
<ImageButton android:background="@drawable/defaultbutton2" 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" /> 

As for part 2 of your question... open what in your browser? Open a random URL? If so...

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.com"));
startActivity(intent);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文