Commit 23d1081afde667eca57e50f2a82addf3ba53b6b5

Authored by 袁思汶
1 parent 501ac240

外分生活圈修改

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)
... ...
config.gradle
... ... @@ -21,7 +21,7 @@ ext {
21 21 //编译方式
22 22 debug : false,
23 23 //版本号
24   - version: "1.0.0.7",
  24 + version: "1.0.0.8",
25 25 //Lib库前缀
26 26 packeg : "com.cnlive.outside_share",
27 27 //Lib库名称
... ...