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