43 lines
1.0 KiB
Java
43 lines
1.0 KiB
Java
package com.github.catvod.spider;
|
|
|
|
import android.app.Activity;
|
|
import android.content.ComponentName;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
import android.text.TextUtils;
|
|
|
|
import com.github.catvod.crawler.Spider;
|
|
|
|
public class Live extends Spider {
|
|
|
|
private int delay;
|
|
|
|
@Override
|
|
public void init(Context context, String extend) {
|
|
super.init(context, extend);
|
|
this.delay = delay(extend);
|
|
}
|
|
|
|
@Override
|
|
public String homeVideoContent() {
|
|
Init.run(this::openLive, delay);
|
|
return "";
|
|
}
|
|
|
|
private int delay(String extend) {
|
|
try {
|
|
return TextUtils.isEmpty(extend) ? 0 : Integer.parseInt(extend);
|
|
} catch (Throwable ignored) {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
private void openLive() {
|
|
try {
|
|
Activity activity = Init.getActivity();
|
|
activity.startActivity(new Intent().setComponent(new ComponentName(activity, "com.fongmi.android.tv.ui.activity.LiveActivity")));
|
|
} catch (Throwable ignored) {
|
|
}
|
|
}
|
|
}
|