Package icyllis.modernui.view
Interface ViewManager
- All Known Subinterfaces:
WindowManager
- All Known Implementing Classes:
AbsListView,AbsoluteLayout,AbsSpinner,AdapterView,CoordinatorLayout,DropDownListView,ExpandableListView,FragmentContainerView,FrameLayout,GridLayout,GridView,HorizontalScrollView,LinearLayout,ListView,NestedScrollView,RadioGroup,RelativeLayout,RelativeRadioGroup,ScrollView,Spinner,TabLayout,TabLayout.TabView,TableLayout,TableRow,TestFragment.TestLinearLayout,ViewGroup,ViewPager
public interface ViewManager
Interface for adding/removing child views to/from a view hierarchy.
-
Method Summary
Modifier and TypeMethodDescriptionvoidaddView(View view, ViewGroup.LayoutParams params) Assign the passed LayoutParams to the passed View and add the view to the window.voidremoveView(View view) voidupdateViewLayout(View view, ViewGroup.LayoutParams params)
-
Method Details
-
addView
Assign the passed LayoutParams to the passed View and add the view to the window.- Parameters:
view- The view to be added to this window.params- The LayoutParams to assign to view.
-
updateViewLayout
-
removeView
-