Android 自定义Toast

1、Android原生的Toast的基础上进行封装。

省去忘记调show方法的烦恼,而且时间也都是一样的,改一处全改,很方便。

public class MyToast {
	public static void showToast(Context context, String text) {
		Toast.makeText(context, text, Toast.LENGTH_SHORT).show();
	}
}


你可能感兴趣的:(Android,开发)