- It helps to filter Log Text. - Log Message class for Android. - You can use this class to assign common Tag Name. import android.util.Log; public class LogMessage { public static void d(String message) { Log.d("TAG :", message); } public static void d(int message) { Log.d("TAG :", message+""); } public static void e(String message) { Log.e("TAG :", message); } public static void e(int message) { Log.e("TAG :", message+""); } public static void i(String message) { Log.e("TAG :", message); } ...
Create custom toast message in android Download Code Hello friends, Maybe you would like to create custom toast message. In the following image you can see how our custom toast message will look like. If you wont to create custom toast message like this, kindly download demo and use this code. I hope this code will help you… Thanks! Download Code
It's working...
ReplyDelete