目前我的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
答案 0 :(得分:2)
尝试:
<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" />
至于问题的第2部分...在浏览器中打开什么内容?打开随机网址?如果是的话......
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setData(Uri.parse("http://www.google.com"));
startActivity(intent);