Android——在Button中添加图片的同时添加文字(不覆盖)、无边界Button

觉得添加按钮又添加文字太麻烦又不美观?想要把展示的都放在按钮上?可以吗,当然可以。

  • 实现效果

Android——在Button中添加图片的同时添加文字(不覆盖)、无边界Button_第1张图片
这是两个按钮

  • 实现代码

<Button
        android:id="@+id/select_land"					//id
        android:textColor="@color/colorText"			//字体颜色
        android:background="@color/colorMain"			//按钮背景调用
        android:text="登陆"								//文字设置
        android:textSize="25sp"							//字体大小
        android:layout_marginTop="20sp"					//上间距
        android:layout_gravity="center"					//居中
        android:layout_width="200dp"
        android:layout_height="60sp"
        android:drawableLeft="@mipmap/count_land"/>		//这是重点
  • 重点解释

android:drawableLeft="@mipmap/count_land"/>   			//drawableLeft的意思是将引用拉在左侧
android:drawableRight="@mipmap/count_land"			//当然你也可以拉在右侧

拉在右侧的效果
在这里插入图片描述
当然,你可以想怎么拉就怎么拉~,开心就好?
Android——在Button中添加图片的同时添加文字(不覆盖)、无边界Button_第2张图片

隐藏按钮的边框,和布局融合在一起

  • 有时候需求中想要布局更美观,不想要凸显button的边界
  • 效果
    Android——在Button中添加图片的同时添加文字(不覆盖)、无边界Button_第3张图片
  • 实现代码
    在Button中添加该句
style="?android:attr/borderlessButtonStyle"
<Button
        android:id="@+id/select_logon"
        android:textColor="@color/colorText"
        android:background="@color/colorMain"
        android:text="注册"
        android:textSize="25sp"
        android:layout_marginTop="230dp"
        android:layout_gravity="center"
        android:layout_width="200dp"
        android:layout_height="60sp"
        android:drawableLeft="@mipmap/count_land"
        style="?android:attr/borderlessButtonStyle"/>		//我是关键句

你可能感兴趣的:(Android,有趣的发现)