Commit c25ff3809397a4784ebe669abca1ba02e9fc6787
1 parent
21b19be9
家园 --- 好家园 142版本号已被分支占用
Showing
4 changed files
with
4 additions
and
4 deletions
config.gradle
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/frame/view/OnGoingFragmentView.java
| ... | ... | @@ -97,7 +97,7 @@ public class OnGoingFragmentView implements MvpView { |
| 97 | 97 | public void shareCurrentRace() { |
| 98 | 98 | CNLiveShareService shareService = OpenServiceHelpUtil.getShareService(getContext()); |
| 99 | 99 | if (null != shareService && null != runRaceDetailInfo) { |
| 100 | - String subTitle = "我在家园上报名了线上赛事 快来和我一起动起来"; | |
| 100 | + String subTitle = "我在好家园上报名了线上赛事 快来和我一起动起来"; | |
| 101 | 101 | String shareUrl = AppConfig.isDebug() ? SHARE_DEBUG_URL : SHARE_REL_URL; |
| 102 | 102 | // String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports.png"; |
| 103 | 103 | String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports_rec.png"; | ... | ... |
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/frame/view/RunRaceDetailFragmentView.java
| ... | ... | @@ -144,7 +144,7 @@ public class RunRaceDetailFragmentView implements MvpView, SensorEventListener { |
| 144 | 144 | public void shareCurrentRace() { |
| 145 | 145 | CNLiveShareService shareService = OpenServiceHelpUtil.getShareService(getContext()); |
| 146 | 146 | if (null != shareService && null != runRaceDetailInfo) { |
| 147 | - String subTitle = "我在家园上报名了线上赛事 快来和我一起动起来"; | |
| 147 | + String subTitle = "我在好家园上报名了线上赛事 快来和我一起动起来"; | |
| 148 | 148 | String shareUrl = AppConfig.isDebug() ? SHARE_DEBUG_URL : SHARE_REL_URL; |
| 149 | 149 | // String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports.png"; |
| 150 | 150 | String shareImgUrl = "http://wjj.ys1.cnliveimg.com/download/app_icon/share/strike_logo_mass_sports_rec.png"; | ... | ... |
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/ui/activity/ShareRecordActivity.java
| ... | ... | @@ -72,7 +72,7 @@ public class ShareRecordActivity extends AppCompatActivity { |
| 72 | 72 | |
| 73 | 73 | if(getIntent().getStringExtra("idName") != null) idName = getIntent().getStringExtra("idName"); |
| 74 | 74 | cord_name = findViewById(R.id.cord_name); |
| 75 | - cord_name.setText("我在家园\n" + getIntent().getStringExtra("raceTitle") + "中的最佳成绩"); | |
| 75 | + cord_name.setText("我在好家园\n" + getIntent().getStringExtra("raceTitle") + "中的最佳成绩"); | |
| 76 | 76 | ((TextView) findViewById(R.id.kilo_share)).setText(getIntent().getStringExtra("kilo")); |
| 77 | 77 | ((TextView) findViewById(R.id.step_share)).setText(getIntent().getStringExtra("step")); |
| 78 | 78 | ((TextView) findViewById(R.id.time_share)).setText(TimeUtil.stampToChronometers(Double.parseDouble(getIntent().getStringExtra("time")))); | ... | ... |