| | |
| | | View view = getLayoutInflater().inflate(R.layout.item_share_from_filter, |
| | | null, false); |
| | | // 创建PopupWindow实例,200,150分别是宽度和高度 |
| | | mTopRightPopupWindow = new PopupWindow(view, (int) (SystemCommon.getScreenWidth(this) / 2), ViewGroup.LayoutParams.WRAP_CONTENT, true); |
| | | mTopRightPopupWindow = new PopupWindow(view, (int) (SystemCommon.getScreenWidth(this) / 3), ViewGroup.LayoutParams.WRAP_CONTENT, true); |
| | | // 设置动画效果 [R.style.AnimationFade 是自己事先定义好的] |
| | | // pw_filter.setAnimationStyle(R.style.pop_multiple); |
| | | mTopRightPopupWindow.setTouchable(true); |
| | |
| | | mTopRightPopupWindow.setFocusable(false); |
| | | ListView lv = view.findViewById(R.id.lv_filter_pw); |
| | | // mulList.add(new TopMenuRightPopContent("复制链接", R.drawable.ic_goods_detail_copy_link)); |
| | | mulList.add(new TopMenuRightPopContent("帮助中心", R.drawable.ic_goods_detail_help_center)); |
| | | mulList.add(new TopMenuRightPopContent("新手攻略", R.drawable.ic_goods_detail_novice)); |
| | | mulList.add(new TopMenuRightPopContent("联系客服", R.drawable.ic_goods_detail_contact_kefu)); |
| | | mulList.add(new TopMenuRightPopContent("我要吐槽", R.drawable.ic_goods_detail_criticism)); |
| | | // mulList.add(new TopMenuRightPopContent("帮助中心", R.drawable.ic_goods_detail_help_center)); |
| | | // mulList.add(new TopMenuRightPopContent("新手攻略", R.drawable.ic_goods_detail_novice)); |
| | | mulList.add(new TopMenuRightPopContent("联系客服",null)); |
| | | mulList.add(new TopMenuRightPopContent("我要吐槽", null)); |
| | | shareFromAdapter = new TopMenuRightPopContentAdapter(this, mulList); |
| | | lv.setAdapter(shareFromAdapter); |
| | | |
| | |
| | | // Toast.makeText(GoodsDetailActivityTB.this, "链接复制成功", Toast.LENGTH_LONG).show(); |
| | | // } else |
| | | if (position == 0) { |
| | | Intent intent1 = new Intent(GoodsDetailActivityTB.this, ShareBrowserActivity.class); |
| | | intent1.putExtra("title", "帮助中心"); |
| | | intent1.putExtra("url", sp.getString("help", "")); |
| | | startActivity(intent1); |
| | | } else if (position == 1) { |
| | | RecordImageTextVideo textVideo = new RecordImageTextVideo(GoodsDetailActivityTB.this); |
| | | String url = textVideo.getvideoMoreUrl(); |
| | | if (StringUtils.isEmpty(url)) { |
| | | url = textVideo.gettxtImgUtl(); |
| | | } |
| | | Intent intent = new Intent(GoodsDetailActivityTB.this, ShareBrowserActivity.class); |
| | | intent.putExtra("url", url); |
| | | startActivity(intent); |
| | | } else if (position == 2) { |
| | | // startActivity(new Intent(GoodsDetailActivityTB.this, ContactUsActivity.class)); |
| | | KeFuUtil.jumpKeFu(GoodsDetailActivityTB.this, "商品详情"); |
| | | } else if (position == 3) { |
| | | } else if (position == 1) { |
| | | startActivity(new Intent(GoodsDetailActivityTB.this, GoComplainActivity.class)); |
| | | } |
| | | } |
| | |
| | | tv_rebate_num.setText(" 返" + mInfo.getGoods().getMoneyInfo().getFanliMoney()); |
| | | tv_rebate_num.setVisibility(View.GONE); |
| | | //设置推荐信息 |
| | | mInfo.getGoods().setDescription(""); |
| | | if (StringUtils.isEmpty(mInfo.getGoods().getDescription())) { |
| | | ll_recommend.setVisibility(View.GONE); |
| | | } else { |