}
/**
-
Show the view or text notification for a short period of time. This time
-
could be user-definable. This is the default.
*/
public static final int LENGTH_SHORT = 0;
/**
-
Show the view or text notification for a long period of time. This time
-
could be user-definable.
*/
public static final int LENGTH_LONG = 1;
private Toast() {
}
/**
-
Make a standard toast that just contains a text view.
-
@param context The context to use. Usually your {@link android.app.Application}
-
or {@link android.app.Activity} object.
-
@param text The text to show. Can be formatted text.
-
@param duration How long to display the message. Either {@link #LENGTH_SHORT} or
-
{@link #LENGTH_LONG}
*/
public static android.widget.Toast makeText(Context context, CharSequence text, @Duration int duration) {
android.widget.Toast result = new android.widget.Toast(context);
LayoutInflater inflate = (LayoutInflater)
context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflate.inflate(R.layout.transient_notification, null);
TextView tv = (TextView) v.findViewById(R.id.message);
tv.setText(text);
result.setView(v);
result.setDuration(duration);
return result;
}
/**
-
Make a standard toast that just contains a text view with the text from a resource.
-
@param context The context to use. Usually your {@link android.app.Application}
-
or {@link android.app.Activity} object.
-
@param resId The resource id of the string resource to use. Can be formatted text.
-
@param duration How long to display the message. Either {@link #LENGTH_SHORT} or
-
{@link #LENGTH_LONG}
-
@throws Resources.NotFoundException if the resource can’t be found.
*/
public static android.widget.Toast makeText(Context context, @StringRes int resId, @Duration int duration)
throws Resources.NotFoundException {
return makeText(context, context.getResources().getText(resId), duration);
}
}
核心是makeText(Context context, CharSequence text, @Duration int duration)方法,仍然是创建系统Toast,关键点是加载我们自己的transient_notification.xml布局文件,细心的朋友可能还会看到:处理根布局View和duration两个变量,我们分别使用系统Toast提供的setView和setDuration两个public方法。
transient_notification.xml
<LinearLayout
xmlns:android=“http://schemas.android.com/apk/res/android”
android:layout_width=“match_parent”
android:layout_height=“wrap_content”
android:background=“@android:drawable/toast_frame”
android:gravity=“center”
android:orientation=“vertical”>
<TextView
android:id=“@+id/message”
android:layout_width=“wrap_content”
android:layout_height=“wrap_content”
android:layout_gravity=“center”
android:drawableLeft=“@mipmap/qq”
android:drawableRight=“@mipmap/qq”
android:shadowColor=“#BB000000”
android:shadowRadius=“2.75”
android:textAppearance=“@style/TextAppearance.Toast”
android:textColor=“#1bb5d7”/>
需要什么样式的Toast,就定义自己的transient_notification.xml布局就可以,显示图片还是文字完全由你掌控!
我们的Toast定义完了,怎么用呢?
Toast.makeText(MainActivity.this, “自定义toast”, Toast.LENGTH_LONG).show();
看到这行代码有没有很亲切!没错,我们的自定义Toast就是这么用的!
只有一点不同,不要再导入系统的Toast类了,用自己定义的,连包都不需要导入了!
总结
可以看出,笔者的工作学习模式便是由以下 「六个要点」 组成:
❝ 多层次的工作/学习计划 + 番茄工作法 + 定额工作法 + 批处理 + 多任务并行 + 图层工作法❞
希望大家能将这些要点融入自己的工作学习当中,我相信一定会工作与学习地更富有成效。
下面是我学习用到的一些书籍学习导图,以及系统的学习资料。每一个知识点,都有对应的导图,学习的资料,视频,面试题目。
**如:我需要学习 **Flutter的知识。(大家可以参考我的学习方法)
- Flutter 的思维导图(无论学习什么,有学习路线都会事半功倍)
- Flutter进阶学习全套手册
- Flutter进阶学习全套视频
大概就上面这几个步骤,这样学习不仅高效,而且能系统的学习新的知识。
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》,点击传送门,即可获取!
2521)]
- Flutter进阶学习全套视频
[外链图片转存中…(img-GP3UasAH-1715141182522)]
大概就上面这几个步骤,这样学习不仅高效,而且能系统的学习新的知识。
《Android学习笔记总结+移动架构视频+大厂面试真题+项目实战源码》,点击传送门,即可获取!