评论举报功能-完成

This commit is contained in:
khy
2016-12-06 17:06:00 +08:00
parent d02a136e2f
commit 4f0f1672c7
5 changed files with 150 additions and 1 deletions

View File

@ -371,7 +371,13 @@ public class ShareUtils {
Intent sendIntent = new Intent(Intent.ACTION_VIEW, Uri.parse( "smsto:" ));
sendIntent.putExtra( "sms_body", smsBody);
sendIntent.setType( "vnd.android-dir/mms-sms" );
context.startActivity(sendIntent);
try {
context.startActivity(sendIntent);
} catch (Exception e) {
Utils.toast(context, "系统异常,分享失败");
e.printStackTrace();
}
popupWindow.dismiss();
}