Android开发之自定义Toast(带详细注释)

时间:2024-11-15 14:06:13

因为工作需求,所以自己研究了自定义Toast,这里做出总结:

在此之前有一点需要提前说明:Toast与其他组件一样,都属于UI界面中的内容,因此在子线程中无法使用Toast弹出提示内容,如果强行在子线程中增加会导致错误。本例子使用异步任务来说明,原理跟子线程一样。

主界面:

Android开发之自定义Toast(带详细注释)

自定义Toast弹出的样式:

Android开发之自定义Toast(带详细注释)

MainActivity:

 public class MainActivity extends AppCompatActivity implements View.OnClickListener {
Button btn_define; //自定义Toast
Button btn_thread; //线程中的Toast @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.activity_main);
initButton();
btn_define.setOnClickListener(this);
btn_thread.setOnClickListener(this);
} private void initButton() {
btn_define = (Button) findViewById(R.id.btn_all_define);
btn_thread = (Button) findViewById(R.id.btn_other_thread);
} @Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.btn_all_define:
ToastMessage("自定义Toast", "这是我自定义的Toast");
break;
case R.id.btn_other_thread:
//异步任务
new AsyncTask<String, Void, Object>() {
@Override
protected void onPreExecute() {
super.onPreExecute();
} protected Object doInBackground(String... strings) {
//线程中无法使用Toast,需要将Toast发送至主线程中才能使用
Message msg = new Message();
msg.what = 1;//标记位,标记是哪个线程传数据
msg.obj = "这是线程的toast";
mHandler.sendMessage(msg);
return null;
} @Override
protected void onPostExecute(Object o) {
super.onPostExecute(o);
}
}.execute(); break;
}
} Handler mHandler = new MyHandler(); private class MyHandler extends Handler {
@Override
public void handleMessage(Message msg) {
super.handleMessage(msg);
switch (msg.what) {
case 1:
String str = (String) msg.obj;
Toast.makeText(getApplicationContext(), str, Toast.LENGTH_LONG).show();
break;
}
}
} /**
* 将Toast封装在一个方法中,在其它地方使用时直接输入要弹出的内容即可
*/
private void ToastMessage(String titles, String messages) {
//LayoutInflater的作用:对于一个没有被载入或者想要动态载入的界面,都需要LayoutInflater.inflate()来载入,LayoutInflater是用来找res/layout/下的xml布局文件,并且实例化
LayoutInflater inflater = getLayoutInflater();//调用Activity的getLayoutInflater()
View view = inflater.inflate(R.layout.toast_style, null); //加載layout下的布局
ImageView iv = view.findViewById(R.id.tvImageToast);
iv.setImageResource(R.mipmap.atm);//显示的图片
TextView title = view.findViewById(R.id.tvTitleToast);
title.setText(titles); //toast的标题
TextView text = view.findViewById(R.id.tvTextToast);
text.setText(messages); //toast内容
Toast toast = new Toast(getApplicationContext());
toast.setGravity(Gravity.CENTER, 12, 20);//setGravity用来设置Toast显示的位置,相当于xml中的android:gravity或android:layout_gravity
toast.setDuration(Toast.LENGTH_LONG);//setDuration方法:设置持续时间,以毫秒为单位。该方法是设置补间动画时间长度的主要方法
toast.setView(view); //添加视图文件
toast.show();
}
}

activity的布局文件:activity_main.xml

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_horizontal"
android:orientation="vertical"> <Button
android:id="@+id/btn_all_define"
android:text="自定义Toast"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"/> <Button
android:id="@+id/btn_other_thread"
android:text="线程中Toast的使用"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_horizontal"/>
</LinearLayout>

toast的样式:toast_style.xml

我这里是比较简单的样式,如果想要其他形式的可以根据自身的需求更改界面即可实现。

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/llToast"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffffff"
android:orientation="vertical" > <TextView
android:id="@+id/tvTitleToast"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="1dip"
android:background="#bb000000"
android:gravity="center"
android:textColor="#ffffffff" /> <LinearLayout
android:id="@+id/llToastContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="1dip"
android:layout_marginLeft="1dip"
android:layout_marginRight="1dip"
android:background="#44000000"
android:orientation="vertical"
android:padding="15dip" > <ImageView
android:id="@+id/tvImageToast"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" /> <TextView
android:id="@+id/tvTextToast"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingLeft="10dip"
android:paddingRight="10dip"
android:textColor="#ff000000" />
</LinearLayout> </LinearLayout>

以上就是今天上午研究的自定义的Toast。以后开发直接拿来用就OK!

补充:上面的形式总归上不了大雅之堂,现在补充一个新的完全自定义的Toast,可以根据自身需求随意设置:

import com.example.myproject.R;
import android.content.Context;
import android.view.View;
import android.widget.LinearLayout;
import android.widget.TextView;
import android.widget.Toast; public class ToastUtils {
private Toast toast;
private LinearLayout toastView; /**
* 完全自定义布局Toast
*/
public ToastUtils(Context context, View view, int duration) {
toast = new Toast(context);
toast.setView(view);
toast.setDuration(duration);
} /**
* 向Toast中添加自定义View
*/
public ToastUtils addView(View view, int position) {
toastView = (LinearLayout) toast.getView();
toastView.addView(view, position);
return this;
} /**
* 设置Toast字体及背景
*/
public ToastUtils setToastBackground(int messageColor, int background) {
View view = toast.getView();
if (view != null) {
TextView message = (TextView) view.findViewById(R.id.message);
message.setBackgroundResource(background);
message.setTextColor(messageColor);
} return this;
} /**
* 短时间显示Toast
*/
public ToastUtils Short(Context context, CharSequence message) {
if (toast == null
|| (toastView != null && toastView.getChildCount() > 1)) {
toast = Toast.makeText(context, message, Toast.LENGTH_SHORT);
toastView = null;
} else {
toast.setText(message);
toast.setDuration(Toast.LENGTH_SHORT);
}
return this;
} /**
* 长时间显示toast
*/
public ToastUtils Long(Context context, CharSequence message) {
if (toast == null
|| (toastView != null && toastView.getChildCount() > 1)) {
toast = Toast.makeText(context, message, Toast.LENGTH_LONG);
toastView = null;
} else {
toast.setText(message);
toast.setDuration(Toast.LENGTH_LONG);
}
return this;
} /**
* 自定义显示Toast的时长
*/
public ToastUtils Indefinite(Context context, CharSequence message,
int duration) {
if (toast == null
|| (toastView != null && toastView.getChildCount() > 1)) {
toast = Toast.makeText(context, message, duration);
toastView = null;
} else {
toast.setText(message);
toast.setDuration(duration);
} return this;
} /**
* 显示Toast
*/
public ToastUtils show() {
toast.show();
return this;
} /**
* 获取Toast
*/
public Toast getToast() {
return toast;
}
}