今天完成内容:
1.学习android toast
<?
xml
version
=
"1.0"
encoding
=
"utf-8"
?>
android:layout_width
=
"fill_parent"
android:layout_height
=
"fill_parent"
android:gravity
=
"center"
android:orientation
=
"vertical"
android:padding
=
"5dip"
>
<
Button
android:id
=
"@+id/btnSimpleToast"
android:layout_width
=
"fill_parent"
android:layout_height
=
"wrap_content"
android:text
=
"默认"
>
</
Button
>
<
Button
android:id
=
"@+id/btnSimpleToastWithCustomPosition"
android:layout_width
=
"fill_parent"
android:layout_height
=
"wrap_content"
android:text
=
"自定义显示位置"
>
</
Button
>
<
Button
android:id
=
"@+id/btnSimpleToastWithImage"
android:layout_width
=
"fill_parent"
android:layout_height
=
"wrap_content"
android:text
=
"带图片"
>
</
Button
>
<
Button
android:id
=
"@+id/btnCustomToast"
android:layout_width
=
"fill_parent"
android:layout_height
=
"wrap_content"
android:text
=
"完全自定义"
>
</
Button
>
<
Button
android:id
=
"@+id/btnRunToastFromOtherThread"
android:layout_width
=
"fill_parent"
android:layout_height
=
"wrap_content"
android:text
=
"其他线程"
>
</
Button
>
</
LinearLayout
>
![](https://img2020.cnblogs.com/blog/2089873/202106/2089873-20210620232604142-240168918.png)
2.看视频
遇到问题:
无
明日目标:
学习Android studio的开发