Commit 23d1081afde667eca57e50f2a82addf3ba53b6b5
1 parent
501ac240
外分生活圈修改
Showing
2 changed files
with
3 additions
and
3 deletions
OutSide_Share/src/main/java/com/cnlive/outside_share/activity/ShareMomentActivity.java
| ... | ... | @@ -250,7 +250,7 @@ public class ShareMomentActivity extends AppCompatActivity { |
| 250 | 250 | } |
| 251 | 251 | } else if (!link.startsWith("http") && !link.contains("http") && link.length() > 0) { //文字实体类型 |
| 252 | 252 | jumpReleaseActivity(context, new ArrayList<Media>(), 3, link, "nocircle"); |
| 253 | - finish(); | |
| 253 | + killTime(); | |
| 254 | 254 | } else if (link.contains("http") && !link.startsWith("http")) { //带文字实体前缀的复合类型链接 |
| 255 | 255 | String linkcontext = link.replaceAll("\\s*", ""); |
| 256 | 256 | int end; //截取前缀文字作为分享标题内容 ,后半段为链接link内容 |
| ... | ... | @@ -591,7 +591,7 @@ public class ShareMomentActivity extends AppCompatActivity { |
| 591 | 591 | } |
| 592 | 592 | |
| 593 | 593 | public void jumpReleaseActivity(Context context, ArrayList<Media> select, int type, String content, String isCircle) { |
| 594 | - if (select == null || select.size() == 0) return; | |
| 594 | + if (select == null) return; | |
| 595 | 595 | else { |
| 596 | 596 | ARouter.getInstance().build("/cnmain/ReleaseManagementAcityity") |
| 597 | 597 | .withParcelableArrayList("select", select) | ... | ... |