58、常规控件(1)Floating Action Button-浮动的圆形按钮

          

 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 2     xmlns:app="http://schemas.android.com/apk/res-auto"
 3     android:layout_width="match_parent"
 4     android:layout_height="match_parent"
 5     android:layout_margin="20dp"
 6     android:orientation="vertical">
 7
 8     <!--
 9         app:backgroundTint="#ff0000"  设置背景颜色
10         app:fabSize="normal" 在包括图片以外,还会预留一些间隔。
11         app:elevation="20dp" 控制(图片周围)阴影大小
12         app:rippleColor="#000000" 按钮点击时的颜色
13     -->
14     <android.support.design.widget.FloatingActionButton
15         android:layout_width="wrap_content"
16         android:layout_height="wrap_content"
17         android:src="@drawable/ic_launcher"
18         app:backgroundTint="#ff0000"
19         app:fabSize="normal"
20         app:elevation="20dp"
21         app:rippleColor="#000000"
22         />
23
24 </LinearLayout>
时间: 2024-12-15 10:06:55

58、常规控件(1)Floating Action Button-浮动的圆形按钮的相关文章

html学习第一讲(内容html常规控件的的使用)

1 <html> 2 <head> 3 <title> 这是网页的标题</title> 4 </head> 5 6 <body> 7 <h2><font color ="blue"> 这是网页的内容!</font></h2> 8 9 <a href="http://www.cnblogs.com/gongxijun">这是一个连接<

CheckBox控件中background和button的区别

控件:CheckBox android:background="@drawable/me_setting_switch_selector" 这个表示替换默认控件的背景 android:button="@drawable/me_setting_switch_selector" 这个表示替换默认控件的图片 区别在于:background的替换会让控件大小根据图片大小的变动 button则只是改变图片,不会让图片大小超出控件默认的大小 CheckBox控件中backgro

标准控件(一)——Button,CheckBox,CheckBoxList

Button LinkButton超链接模样的按钮,ImageButton图片模样的按钮(ImageUrl属性): 拥有Label的所有属性. CommandArgument         与此按钮关联的命令参数.(相当于value值) OnClientClick           按钮点击的时候,要执行的客户端脚本. 如何给控件加上JS 的脚本调用? 法一:直接在源代码中加上相应的JS事件,及脚本调用. <asp:TextBox onblur="checkEmail()"

【VC编程技巧】控件?4.1位图Button

4.1位图Button 给按钮增加位图,或改变按钮字体,可以让按钮达到跟炫的效果:如何给按钮增加位图,和改变按钮上文字的字体?请看下面示例! 1>创建对话框程序,建立如下对话框: 图1 资源ID说明: 左边按钮ID:IDC_BUTTON1 右边按钮ID:IDCANCEL 2>设置button属性,设置选项如下图箭头处: 图2 3>添加位图到工程,如下图箭头处: 图3 4>给左边按钮添加控件变量(利用类向导); CBitmapButton m_bitmapButton; ※如果类向导

MFC控件-单选按钮(Radio Button)

单选按钮通常成组使用,每个单选按钮都代表一组相互排斥的选项中的一个.当为第一个单选按钮设置了Group属性后,随后的几个单选按钮就和这个按钮属于同一组了,直到遇到下一个(按照TAB顺序)具有Group属性的控件为止. 1.设置RadioA的Group属性,关联int型变量m_RadioA. 此时6个单选按钮属于同组.依次点击RadioA至RadioF,m_RadioA的值由0变为5. 2.设置RadioE的Group属性,关联int型变量m_RadioE. 此时RadioA至RadioD同组,R

Android控件:RadioButton(单选button)

首先,在布局文件 activity_main.xml中注冊一个RadioGroup,并为RadioGroup设置监听,图中两个RadioButton为一个RadioGroup. activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" andro

Ionic控件之——按钮(Button)

Ionic提供丰富的按钮特性,足以满足大部分的按钮实现需求. HTML定义一个按钮: <button class="button"> 我是按钮 </button> 监听按钮的点击事件: 通常一个按钮被用户点击后,一定会触发一个功能,例如提交表单.确认选择.弹出提示等等,因此对按钮点击的监听,以及触发点击后要处理的事件逻辑是在Ionic开发中最常见的开发需求. 1.在html中为ng-click添加一个事件: <button class="butt

EXTJS 3.0 资料 控件之 FormPanel 插入button用法

最近发现项目中FormPanel 里面需要 增加 button,的模块比较多,具体代码如下: var eastPanelForm_Dele = new Ext.form.FormPanel({ id: 'eastPanelForm_Dele', width: 250, border: false, autoScroll: true, height: 400, frame: true, layout: 'form', region: 'center', items: [{ bodyStyle: '

59、常规控件(2)TextInputLayout-让EditText提示更加人性化

提示语用在显示. 1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 android:layout_width="match_parent" 3 android:layout_height="match_parent" 4 android:layout_margin="20dp" 5 android:orientatio