我有一个类扩展了我的应用程序中的应用程序类。我想知道是否有办法将 AndroidViewModel 应用程序参数转换为 MyApp 类。像这样的东西:
public class ChartViewModel extends AndroidViewModel<MyApp> {
public ChartViewModel (@NonNull MyApp application) {
super(application);
}
有了这个,我可以像这样在 ChartViewModel 中检索 MyApp 对象(无需每次都强制转换)
MyApp myApp = getApplication();
预先感谢。