//先上效果图咯:
//第一步 写个吐司的布局toast_layout.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/shape_rec_little" >
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
>
<TextView
android:id="@+id/tv_toast"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dp"
android:layout_gravity="center"
android:text="吐司"
android:textSize="18sp" />
<TextView
android:id="@+id/tv_toast_content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="5dp"
android:text="自定义吐司赵四" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/si" />
</LinearLayout>
</RelativeLayout>
//第二步 写一些圆角属性,shape_rec_little.xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<solid android:color="#fff" />
<!-- android:radius 弧形的半径 -->
<corners android:radius="8dp" />
<!-- padding:Button里面的文字与Button边界的间隔 -->
<padding
android:left="10dp"
android:right="10dp"
android:bottom="5dp"
android:top="5dp"
/>
<stroke
android:width="2px"
android:color="#ccc" />
</shape>
//第三步 Activity 里调用:
//我在点击事件里直接调用了。
Toast toast = new Toast(this);
View views = LayoutInflater.from(this).inflate(R.layout.toast_layout, null);
toast.setView(views);
toast.setGravity(Gravity.CENTER, 0, 0);
toast.setDuration(2000);
toast.show();
//—————————————————————————-完——————————————————————————-
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/118336.html