添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接
相关文章推荐
打篮球的鼠标垫  ·  浙江省东阳中学·  3 月前    · 
独立的小狗  ·  dpkg-buildpackage => ...·  3 月前    · 
温文尔雅的紫菜汤  ·  Solved: HubSpot ...·  7 月前    · 
酷酷的煎鸡蛋  ·  API: graphql 容器 | ...·  11 月前    · 
* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * http://www.apache.org/licenses/LICENSE-2.0 * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. package androidx.lifecycle; import android.annotation.SuppressLint; import android.app.Application; import androidx.annotation.NonNull; * Application context aware {@link ViewModel}. * Subclasses must have a constructor which accepts {@link Application} as the only parameter. public class AndroidViewModel extends ViewModel { @SuppressLint("StaticFieldLeak") private Application mApplication; public AndroidViewModel(@NonNull Application application) { mApplication = application; * Return the application. @SuppressWarnings("TypeParameterUnusedInFormals") @NonNull public T getApplication() { //noinspection unchecked return (T) mApplication;