|
|
@@ -2622,11 +2622,12 @@ public class Jump2View {
|
|
|
/**
|
|
|
* 跳转游戏评论详情界面
|
|
|
*
|
|
|
- * @param user_comment_id
|
|
|
+ * @param id
|
|
|
*/
|
|
|
- public void goActAppCommentDetail(int user_comment_id) {
|
|
|
- Activity activity = SheepApp.getInstance().getCurrentActivity();
|
|
|
- activity.startActivity(DataUtil.putObject(new Intent(activity, ActUserCommentDetail.class), user_comment_id));
|
|
|
+ public void goActAppCommentDetail(int id) {
|
|
|
+// Activity activity = SheepApp.getInstance().getCurrentActivity();
|
|
|
+// activity.startActivity(DataUtil.putObject(new Intent(activity, ActUserCommentDetail.class), user_comment_id));
|
|
|
+ goWeb(SheepApp.getInstance().getCurrentActivity(), new WebParams(Config.getUrlByPath(Config.PATH_COMMENT_DETAIL, "id", id), "详情").hideProgress());
|
|
|
}
|
|
|
|
|
|
/**
|