Commit a77146cf8bd59d93a0e3fa5335a673742070f40f
1 parent
8f645213
报名页面跳转0
Showing
1 changed file
with
3 additions
and
0 deletions
moudle_pedometer/src/main/java/com/cnlive/moudle/pedometer/frame/view/RunRaceDetailFragmentView.java
| ... | ... | @@ -6,6 +6,7 @@ import android.util.Log; |
| 6 | 6 | import android.view.View; |
| 7 | 7 | |
| 8 | 8 | import com.cnlive.moudle.pedometer.ui.activity.PedometerMainActivity; |
| 9 | +import com.cnlive.moudle.pedometer.ui.activity.RegistrationInfoActivity; | |
| 9 | 10 | import com.cnlive.moudle.pedometer.ui.activity.RunningMapActivity; |
| 10 | 11 | import com.cnlive.moudle.pedometer.ui.fragment.RunMainFragment; |
| 11 | 12 | import com.cnlive.moudle.pedometer.ui.fragment.RunRaceDetailFragment; |
| ... | ... | @@ -61,6 +62,7 @@ public class RunRaceDetailFragmentView implements MvpView { |
| 61 | 62 | fragment.binding.rlScrollViewStartBtn.setTag("1"); |
| 62 | 63 | fragment.binding.tvRunNow.setText("现在开始"); |
| 63 | 64 | fragment.binding.tvGoTip.setVisibility(View.VISIBLE); |
| 65 | + RegistrationInfoActivity.newInstance(fragment.getActivity()); | |
| 64 | 66 | } else { |
| 65 | 67 | //开始运动 |
| 66 | 68 | fragment.binding.includeStreet.rlStartBtn.setTag("0"); |
| ... | ... | @@ -87,6 +89,7 @@ public class RunRaceDetailFragmentView implements MvpView { |
| 87 | 89 | fragment.binding.includeStreet.rlStartBtn.setTag("1"); |
| 88 | 90 | fragment.binding.includeStreet.tvRunNow.setText("现在开始"); |
| 89 | 91 | fragment.binding.includeStreet.tvGoTip.setVisibility(View.VISIBLE); |
| 92 | + RegistrationInfoActivity.newInstance(fragment.getActivity()); | |
| 90 | 93 | } else { |
| 91 | 94 | //开始运动 |
| 92 | 95 | fragment.binding.rlScrollViewStartBtn.setTag("0"); | ... | ... |