- Get link
- Other Apps
Posted by
Sapan Dang
on
- Get link
- Other Apps
Handler handler = new Handler(Looper.getMainLooper());
handler.post(new Runnable() {
@Override public void run()
{
Toast.makeText(mContext,"Service Started",Toast.LENGTH_SHORT).show();
}
});
- Get link
- Other Apps
Comments
Post a Comment