Java Code Examples for com.mob.tools.utils.UIHandler#sendEmptyMessage()
The following examples show how to use
com.mob.tools.utils.UIHandler#sendEmptyMessage() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: FollowListPage.java From BigApp_Discuz_Android with Apache License 2.0 | 6 votes |
public void onComplete(Platform plat, int action, HashMap<String, Object> res) { FollowersResult followersResult = parseFollowers(platform.getName(), res, map); if(followersResult == null) { UIHandler.sendEmptyMessage(FOLLOW_LIST_EMPTY, this); return; } hasNext = followersResult.hasNextPage; if (followersResult.list != null && followersResult.list.size() > 0) { curPage++; Message msg = new Message(); msg.what = 1; msg.obj = followersResult.list; UIHandler.sendMessage(msg, this); } }
Example 2
Source File: FollowListPage.java From BigApp_WordPress_Android with Apache License 2.0 | 6 votes |
public void onComplete(Platform plat, int action, HashMap<String, Object> res) { FollowersResult followersResult = parseFollowers(platform.getName(), res, map); if(followersResult == null) { UIHandler.sendEmptyMessage(FOLLOW_LIST_EMPTY, this); return; } hasNext = followersResult.hasNextPage; if (followersResult.list != null && followersResult.list.size() > 0) { curPage++; Message msg = new Message(); msg.what = 1; msg.obj = followersResult.list; UIHandler.sendMessage(msg, this); } }
Example 3
Source File: FriendAdapter.java From HHComicViewer with Apache License 2.0 | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 4
Source File: FriendAdapter.java From GithubApp with Apache License 2.0 | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 5
Source File: FriendAdapter.java From fingerpoetry-android with Apache License 2.0 | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 6
Source File: OnekeyShareThemeImpl.java From BaoKanAndroid with MIT License | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = ResHelper.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 7
Source File: OnekeyShareThemeImpl.java From MyHearts with Apache License 2.0 | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = R.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 8
Source File: OnekeyShareThemeImpl.java From LQRWeChat with MIT License | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = ResHelper.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 9
Source File: FriendAdapter.java From LQRWeChat with MIT License | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 10
Source File: OnekeyShareThemeImpl.java From Mobike with Apache License 2.0 | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = R.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 11
Source File: OnekeyShareThemeImpl.java From Social with Apache License 2.0 | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = R.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 12
Source File: OnekeyShareThemeImpl.java From HHComicViewer with Apache License 2.0 | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = R.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 13
Source File: OnekeyShareThemeImpl.java From LiuAGeAndroid with MIT License | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = ResHelper.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 14
Source File: FriendAdapter.java From LiuAGeAndroid with MIT License | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 15
Source File: OnekeyShareThemeImpl.java From enjoyshop with Apache License 2.0 | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = ResHelper.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 16
Source File: OnekeyShareThemeImpl.java From fingerpoetry-android with Apache License 2.0 | 5 votes |
private void toast(final String resOrName) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { int resId = R.getStringRes(context, resOrName); if (resId > 0) { Toast.makeText(context, resId, Toast.LENGTH_SHORT).show(); } else { Toast.makeText(context, resOrName, Toast.LENGTH_SHORT).show(); } return false; } }); }
Example 17
Source File: FriendAdapter.java From YiZhi with Apache License 2.0 | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 18
Source File: FriendAdapter.java From POCenter with MIT License | 5 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(0, new Callback() { public boolean handleMessage(Message msg) { activity.finish(); return false; } }); }
Example 19
Source File: FollowListPage.java From BigApp_WordPress_Android with Apache License 2.0 | 4 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(-1, this); }
Example 20
Source File: FollowListPage.java From BigApp_Discuz_Android with Apache License 2.0 | 4 votes |
public void onCancel(Platform plat, int action) { UIHandler.sendEmptyMessage(-1, this); }