ContentView
@Target([AnnotationTarget.CONSTRUCTOR]) class ContentView
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
Public constructors | |
---|---|
<init>() Annotation that can be attached to a constructor with a single |
Public constructors
<init>
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); } }