1.最后在手机中运行的效果:
2.布局原理
利用相对布局RelativeLayout的各种基础特征
3.元素组件实现原理
3.1顶层标题:yellow_flowers
res\values\style.xml可以修改标题的背景色,默认是绿色。也可修改同级目录下的color.xml的默认配置颜色。
res\values\string.xml中修改标题名
3.2雪花logo实现
雪花图标:
利用<TextView>实现.
<TextView>对应代码为:
<TextView
android:layout_marginTop="40dp"
android:layout_marginBottom="40dp"
android:id="@+id/tv02"
android:layout_width="match_parent"
android:layout_height="40dp"
android:text="Logo"
android:textSize="28dp"
android:drawableLeft="@drawable/ic_ac_unit_black_48dp"
/>
3.3账号密码输入框的实现
账号与密码图标:
利用<EditText>实现
对应代码:
<EditText
android:layout_below="@id/tv02"
android:paddingTop="10dp"
android:id=