version:1.6.6

fix:
update:优化字体大小
This commit is contained in:
2023-11-04 09:43:30 +08:00
parent a8f1198eef
commit 256c52cfc8
12 changed files with 33 additions and 31 deletions

View File

@@ -288,20 +288,20 @@ public class MainActivity extends BaseActivity implements MainContact.MainView,
}
});
ComponentName cn = new ComponentName("com.jxw.mskt.video", "com.jxw.mskt.video.VideoDownload");
Intent intent = new Intent();
intent.setComponent(cn);
intent.putExtra("type", "新东方专区");
intent.putExtra("isCourse", false);
intent.putExtra("id", 23151);
intent.putExtra("name", "西游记");
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
try {
startActivity(intent);
} catch (Exception e) {
Log.e(TAG, "openPackageWithArgs: " + e.getMessage());
}
// ComponentName cn = new ComponentName("com.jxw.mskt.video", "com.jxw.mskt.video.VideoDownload");
// Intent intent = new Intent();
// intent.setComponent(cn);
// intent.putExtra("type", "新东方专区");
// intent.putExtra("isCourse", false);
// intent.putExtra("id", 23151);
// intent.putExtra("name", "西游记");
// intent.addCategory(Intent.CATEGORY_LAUNCHER);
// intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_EXCLUDE_FROM_RECENTS);
// try {
// startActivity(intent);
// } catch (Exception e) {
// Log.e(TAG, "openPackageWithArgs: " + e.getMessage());
// }
}
@Override