ContentView

  • android
    @Retention(value = AnnotationRetention.BINARY)
    @Target(allowedTargets = [AnnotationTarget.CONSTRUCTOR])
    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

android

Public constructors

ContentView

ContentView()