fab

FloatingActionButton setVisibility() not working

匿名 (未验证) 提交于 2019-12-03 08:46:08
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I can't hide my FloatingActionButton . Here is my code: XML: <CoordinatorLayout> <AppBarLayout android:id="@+id/appbar"> <CollapsingToolbarLayout> <ImageView/> <android.support.v7.widget.Toolbar /> </CollapsingToolbarLayout> </AppBarLayout> <NestedScrollView /> <android.support.design.widget.FloatingActionButton android:id="@+id/fab" app:layout_anchor="@id/appbar" app:layout_anchorGravity="bottom|right|end"/> </CoordinatorLayout> And I'm calling: fab.clearAnimation(); fab.setVisibility(View.GONE); I'm trying to hide the FAB, but it seems

使用引线键合器转移印刷纳米材料和微结构

筅森魡賤 提交于 2019-12-02 23:25:33
一、概述 1.将纳米材料和微结构从其原始制造基板向新的主体基板进行可扩展且经济高效的转移是实现异类集成功能系统(如传感器,光子学和电子学)的关键挑战。 2. Published 28 October 2019 • © 2019 IOP Publishing Ltd Journal of Micromechanics and Microengineering , Volume 29 , Number 12 3. 该方法利用常规的引线键合工具转移印刷碳纳米管(CNT)和硅微结构。 标准的球形缝线焊接循环被用作可扩展和高速的取放操作,以实现材料转移。 4. 成功转移了单壁CNT(100 m直径的贴片)从其生长基板到聚二甲基硅氧烷,聚对二甲苯或Au /聚对二甲苯电极基板,并在硅基板上实现由CNT制成的场致发射阴极。 场发射测量结果表明CNT电极具有出色的发射性能。 此外,我们展示了高速焊线机在将硅微结构(60 m 60 m 20 m)从绝缘体衬底上的原始硅转移到新的宿主衬底上的 转移印刷中的实用性 。 目标基板上CNT贴片和硅微结构的放置精度达到 4 米 这些结果表明,使用已建立的且极具成本效益的半导体引线键合基础设施进行纳米材料和微结构的转移印刷,以实现集成微系统和柔性电子学的潜力。 5. 为了推进异构集成技术实现实际应用中,纳米材料和微结构的并行传送的各种方法已经被提出

Android Material风格的应用(四)--FloatActionButton

爱⌒轻易说出口 提交于 2019-11-29 22:44:27
添加 FloatActionButton和SnackBar Android Material风格的应用(一)--AppBar TabLayout Android Material风格的应用(二)--RecyclerView Android Material风格的应用(三)--DrawerLayout Android Material风格的应用(四)--FloatActionButton Android Material风格的应用(五)--CollapsingToolbar 工程源码 在 activity_main.xml 中的 CoordinatorLayout 中添加 FloatActionButton <android.support.design.widget.FloatingActionButton android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/fab" android:layout_gravity="right|bottom" android:layout_marginBottom="@dimen/md_keylines" android:layout_marginRight="@dimen/md_keylines" android:src

函数

我们两清 提交于 2019-11-28 07:10:32
1 、函数介绍 function 为了避免代码重复使用,我们一般通过函数编写代码块,而这一个代码块用来实现某种功能。 且,这个功能在后面的代码中,会重复调用; def 2 、函数的语法格式 函数的写法格式: function check_cpu { cat /proc/cpuinfo } ls /etc/ check_cpu 【不调用函数,则函数体中的命令是不会执行的;在哪里调用,函数体中的命令就在那里执行】 *fun_name() { 函数体 $1 $2 ... $10 } fun_name 1 2 3 :wq function.sh 4 5 6 7 8 9 10 11 12 13 14 3 、函数的调用 -- return 函数返回值 1 、当函数中指定了判断语句的时候,我们默认要返回一个错误的结果,但是最近一条命令确实正确的,这时候,我们需要通过 return 返回一个我们需要的错误状态码; 2 、函数结束的时候,我们需要指定一个 return 的正确返回码; 如果使用在循环语句中, return 会跳出循环; 4 、函数接受参数 函数 变量 和普通的命令一样 只需要注意,在函数接受参数的时候,不会使用外部的传参,而是以脚本内部的参数为准, 5 、函数中的变量 本地变量 local 变量名 =xxx 本地变量只在本函数内部生效 局部变量 脚本内部的变量 环境变量 在整个