androidx.annotation.ContentView Java Examples
The following examples show how to use
androidx.annotation.ContentView.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: BaseActivity.java From Hentoid with Apache License 2.0 | 4 votes |
@ContentView public BaseActivity(@LayoutRes int contentLayoutId) { super(contentLayoutId); }
Example #2
Source File: RxFragmentActivity.java From RxLifecycle with Apache License 2.0 | 4 votes |
@ContentView public RxFragmentActivity(@LayoutRes int contentLayoutId) { super(contentLayoutId); }
Example #3
Source File: RxFragment.java From RxLifecycle with Apache License 2.0 | 4 votes |
@ContentView public RxFragment(@LayoutRes int contentLayoutId) { super(contentLayoutId); }
Example #4
Source File: RxAppCompatActivity.java From RxLifecycle with Apache License 2.0 | 4 votes |
@ContentView public RxAppCompatActivity(@LayoutRes int contentLayoutId) { super(contentLayoutId); }
Example #5
Source File: MVPAlertDialogFragment.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public MVPAlertDialogFragment(int contentLayoutId) { super(contentLayoutId); }
Example #6
Source File: MVPDialogFragment.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public MVPDialogFragment(int contentLayoutId) { super(contentLayoutId); }
Example #7
Source File: MVPFragment.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public MVPFragment(int contentLayoutId) { super(contentLayoutId); }
Example #8
Source File: MVPActivity.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public MVPActivity(int contentLayoutId) { super(contentLayoutId); getLifecycle().addObserver(mLifecycleEventObserver); }
Example #9
Source File: BaseAlertDialogFragment.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public BaseAlertDialogFragment(int contentLayoutId) { super(contentLayoutId); }
Example #10
Source File: BaseActivity.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public BaseActivity(int contentLayoutId) { super(contentLayoutId); }
Example #11
Source File: BaseDialogFragment.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public BaseDialogFragment(@LayoutRes int contentLayoutId) { this(); mContentLayoutId = contentLayoutId; }
Example #12
Source File: BaseFragment.java From ProjectX with Apache License 2.0 | 4 votes |
@ContentView public BaseFragment(int contentLayoutId) { super(contentLayoutId); }