Android中Button默认样式使Button看起来有空隙[通俗易懂]

Android中Button默认样式使Button看起来有空隙[通俗易懂]><LinearLayoutxmlns:android="http://schemas.android.com/apk/r

欢迎大家来到IT世界,在知识的湖畔探索吧!

一个LinearLayout布局,Button位于底部:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="#007aff">
 <TextView
 android:layout_margin="10dp"
 android:id="@+id/etName"
 android:text="标题"
 android:textSize="17sp"
 android:gravity="center"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"/>
 <ImageView
 android:layout_width="200dp"
 android:layout_height="200dp"
 android:layout_gravity="center"
 android:scaleType="fitXY"
 android:layout_marginTop="10dp"
 android:src="@mipmap/ic_launcher"
 />
 <Button
 android:id="@+id/btnCustom"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="20dp"
 android:text="底部按钮"
 />
</LinearLayout>

欢迎大家来到IT世界,在知识的湖畔探索吧!

显示效果如下图所示:Button的左右和下部有空白

Android中Button默认样式使Button看起来有空隙[通俗易懂]

给Button提供背景色,消除上面的”空白”

欢迎大家来到IT世界,在知识的湖畔探索吧!<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="match_parent"
 android:layout_height="match_parent"
 android:background="#007aff">
 <TextView
 android:layout_margin="10dp"
 android:id="@+id/etName"
 android:text="标题"
 android:textSize="17sp"
 android:gravity="center"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"/>
 <ImageView
 android:layout_width="200dp"
 android:layout_height="200dp"
 android:layout_gravity="center"
 android:scaleType="fitXY"
 android:layout_marginTop="10dp"
 android:src="@mipmap/ic_launcher"
 />
 <Button
 android:id="@+id/btnCustom"
 android:layout_width="match_parent"
 android:layout_height="wrap_content"
 android:layout_marginTop="20dp"
 android:text="底部按钮"
 android:background="#ff3b30"
 />
</LinearLayout>

显示效果如下图所示:

Android中Button默认样式使Button看起来有空隙[通俗易懂]

免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://itzsg.com/17832.html

(0)

相关推荐

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

联系我们YX

mu99908888

在线咨询: 微信交谈

邮件:itzsgw@126.com

工作时间:时刻准备着!

关注微信