Summary:
Inherited Methods
ContentView
public
abstract
@interface
ContentView
implements
Annotation
androidx.annotation.ContentView |
Annotation that can be attached to a constructor with a single LayoutRes
parameter
to denote what layout the component intends to inflate and set as its content.
It is strongly recommended that components that support this annotation specifically call it out in their documentation.
public class MainFragment extends Fragment { public MainFragment() { // This constructor is annotated with @ContentView super(R.layout.main); } }
Summary
Inherited methods | |
---|---|