寒假看书巩固安卓基础,顺带写博客,据说这样记得比较牢固
本篇知识点:
帧布局+自定义颜色资源使用+Timer=霓虹灯效果
首先来说说帧布局,事实上根本就是PS里的图层嘛,就是一层叠一层,以FrameLayout为关键字,先添加的组件在下,
后添加的组件在上,大概微信上的还有微博上的头像就是通过FrameLayout里嵌套别的布局来实现,想想帧布局是个好东西,
以后有小作业可以多尝试用用。
具体布局文件代码:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<TextView
android:id="@+id/textview1"
android:layou