pull/171/head
FongMi 2 years ago
parent 10017cb6d3
commit 425cddfcb1
  1. 1
      app/src/leanback/java/com/fongmi/android/tv/ui/activity/LiveActivity.java
  2. 1
      app/src/leanback/java/com/fongmi/android/tv/ui/activity/VideoActivity.java
  3. 1
      app/src/mobile/java/com/fongmi/android/tv/ui/activity/LiveActivity.java
  4. 1
      app/src/mobile/java/com/fongmi/android/tv/ui/activity/VideoActivity.java

@ -352,6 +352,7 @@ public class LiveActivity extends BaseActivity implements GroupPresenter.OnClick
}
private boolean onChoose() {
if (mPlayers.isEmpty()) return false;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("headers", mPlayers.getHeaderArray());

@ -874,6 +874,7 @@ public class VideoActivity extends BaseActivity implements CustomKeyDownVod.List
}
private boolean onChoose() {
if (mPlayers.isEmpty()) return false;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("return_result", true);

@ -407,6 +407,7 @@ public class LiveActivity extends BaseActivity implements CustomKeyDownLive.List
}
private boolean onChoose() {
if (mPlayers.isEmpty()) return false;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("headers", mPlayers.getHeaderArray());

@ -880,6 +880,7 @@ public class VideoActivity extends BaseActivity implements Clock.Callback, Custo
}
private boolean onChoose() {
if (mPlayers.isEmpty()) return false;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra("return_result", true);

Loading…
Cancel
Save