NativeView
android :: NativeViewGroup :: add_view
android $ NativeViewGroup :: SELF
Type of this instance, automatically specialized in every classandroid :: NativeViewGroup :: add_view
core :: Pointer :: address_is_null
Is the address behind this Object at NULL?core :: Object :: class_factory
Implementation used byget_class
to create the specific class.
core :: Object :: defaultinit
android :: NativeView :: defaultinit
jvm :: JavaObject :: defaultinit
core :: Pointer :: defaultinit
android :: NativeView :: enabled
android :: NativeView :: enabled=
core :: Object :: is_same_instance
Return true ifself
and other
are the same instance (i.e. same identity).
core :: Object :: is_same_serialized
Isself
the same as other
in a serialization context?
core :: Object :: is_same_type
Return true ifself
and other
have the same dynamic type.
android :: NativeView :: minimum_height=
android :: NativeView :: minimum_width=
jvm :: JavaObject :: new_global_ref
Returns a global reference to the Java object behind this referencecore :: Object :: output_class_name
Display class name on stdout (debug only).jvm :: JavaObject :: pop_from_local_frame
Pops the current local reference frame and return a valid reference to selfjvm :: JavaObject :: pop_from_local_frame_with_env
Java implementation ofpop_from_local_frame
jvm :: JavaObject :: to_java_string
JavaString
representation of self
using Java's toString
android :: Android_widget_AbsListView
Java class: android.widget.AbsListViewandroid :: Android_widget_ListView
Java class: android.widget.ListView# A collection of `NativeView`
extern class NativeViewGroup in "Java" `{ android.view.ViewGroup `}
super NativeView
fun add_view(view: NativeView) in "Java" `{ self.addView(view); `}
fun remove_view(view: NativeView) in "Java" `{ self.removeView(view); `}
fun add_view_with_weight(view: NativeView, weight: Float)
in "Java" `{
self.addView(view, new LinearLayout.LayoutParams(LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.MATCH_PARENT, (float)weight));
`}
end
lib/android/ui/native_ui.nit:65,1--77,3