3月17日每日总结
今日学习了app布局
线性布局:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button"
android:layout_width="138dp"
android:layout_height="114dp"
android:text="铅笔"
android:textSize="30sp"
app:backgroundTint="#673AB7" />
<Button
android:id="@+id/button4"
android:layout_width="138dp"
android:layout_height="114dp"
android:layout_below="@id/button"
android:layout_toRightOf="@id/button"
android:text="橡皮"
android:textSize="30sp"
app:backgroundTint="#FF5722" />
<Button
android:id="@+id/button5"
android:layout_width="138dp"
android:layout_height="114dp"
android:layout_below="@id/button4"
android:text="尺子"
android:textSize="30sp"
app:backgroundTint="#673AB7" />
</RelativeLayout>