Android開發教程:自定義ViewGroup方法總結
應用中需要新增一個滑動按鈕,在網上看了幾個Demo之後決定自定義ViewGroup來實現。
這裡是對實現過程中自定義ViewGroup的方法總結。
關於ViewGroup,文件給出的描述是:
A ViewGroup is a special view that can contain other views (called children.) The view group is the base class for layouts and views containers.
ViewGroup是一種可以包含其他檢視的特殊檢視,是佈局和其他檢視容器的基類。
正因為ViewGroup可以包含多個檢視,所以在實現滑動按鈕時可以使用它(一個主檢視,一個按鈕檢視)。
以自定義ViewGroup的名稱建立一個類,繼承ViewGroup
public class SlidingMenuView extends ViewGroup {
public SlidingMenuView(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
@Override
protected void onLayout(boolean arg0, int arg1, int arg2, int arg3, int arg4) {
// TODO Auto-generated method stub
}
}
繼承ViewGroup之後,eclipse提示需要生成自定義ViewGroup的構造方法和onLayout方法。
onLayout方法是ViewGroup中的抽象方法,因此繼承ViewGroup之後一定要實現該方法。
Called from layout when this view should assign a size and position to each of its children. Derived classes with children should override this method and call layout on each of their children.
Parameters:
changed
This is a new size or position for this view
l
Left position, relative to parent
t
Top position, relative to parent
r
Right position, relative to parent
b
Bottom position, relative to parent
ViewGroup中的onLayout方法將在ViewGroup為它的孩子們分配尺寸和位置的時候被呼叫,在這個類的實現中,需要呼叫每一個控制元件的佈局方法為其佈局。
注意:onLayout在View中是一個public的方法,在ViewGroup為protected型別,並且為abstract,由於這個方法在ViewGroup中沒有實現,因此ViewGroup本身不可以直接使用。
建立佈局檔案myalbumlistwithmuen,使用MyViewGroup作為控制元件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.album.view.SlidingMenuView
android:id="@+id/myviewgroup"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</com.album.view.SlidingMenuView>
</LinearLayout>
建立如圖兩個子檢視:主頁面myalbumlist、按鈕頁面slidingmenu:
建立Activity,使用myalbumlistwithmuen作為其佈局:
public class MyAlbumListActivity extends Activity {
private MyViewGroup myViewGroup;
private LayoutInflater layoutInflater;
private View slidingmenu, myalbumlist;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.myalbumlistwithmuen);
initView();
}
private void initView(){
myViewGroup=(MyViewGroup)findViewById(R.id.myviewgroup);
layoutInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
slidingmenu = layoutInflater.inflate(R.layout.slidingmenu, null);
myalbumlist=layoutInflater.inflate(R.layout.myalbumlist, null);
myViewGroup.addView(slidingmenu); //新增滑動選單的view
myViewGroup.addView(myalbumlist); //新增主頁面的view
}
}
上面程式碼中,已經將滑動選單檢視和主頁面檢視放入在自定義的ViewGroup當中。自定義的ViewGroup需要為這兩個孩子分配尺寸和位置,故需重寫onLayout方法:
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
if (changed) {
slidingmenu = getChildAt(0);// 獲取滑動選單的view
myalbumlist = getChildAt(1);// 獲得主頁view
// 相當於fill_parent
myalbumlist.measure(0, 0);
myalbumlist.layout(0, 0, getWidth(), getHeight());
}
}
相關文章
- Android自定義View:ViewGroup(三)AndroidView
- ViewGroup篇:玩一下自定義ViewGroupView
- Android自定義View之事件分發機制總結AndroidView事件
- 一篇文章搞懂Android 自定義viewgroup的難點AndroidView
- Android開發教程 - 使用Data Binding(八)使用自定義InterfaceAndroid
- 二、自定義垂直ViewGroup如何設定marginView
- 自定義View以及事件分發總結View事件
- Android技術分享| 自定義ViewGroup實現直播間大小屏無縫切換AndroidView
- flutter自定義View(CustomPainter) 之 canvas的方法總結FlutterViewAICanvas
- Flutter Widget自定義總結Flutter
- 自定義流式佈局:ViewGroup的測量與佈局View
- Android開發經驗總結Android
- Android TV開發總結【RecycleView】AndroidView
- Android自定義View之requestLayout方法和invalidate方法AndroidView
- Android自定義View之invalidate方法和postInvalidate方法AndroidView
- android短視訊開發,自定義下拉選單Android
- Android進階之自定義ViewGroup—帶你一步步輕鬆實現ViewPagerAndroidViewpager
- Vue 自定義元件directive使用總結Vue元件
- Android 日常開發問題總結Android
- Android開發技術面總結Android
- 最詳細的自定義Spring Boot Starter開發教程Spring Boot
- 自定義控制元件總結和思考控制元件
- Android Flutter混合開發問題總結AndroidFlutter
- OPPO Android開發技術面總結Android
- Android開發進階——自定義View的使用及其原理探索AndroidView
- Android進階:自定義視訊播放器開發(上)Android播放器
- Android進階:自定義視訊播放器開發(下)Android播放器
- android自定義view(自定義數字鍵盤)AndroidView
- 微信公眾號連結自定義分享總結
- Spring Boot之Validation自定義實現總結Spring Boot
- 從Android到ReactNative開發(三、自定義原生控制元件支援)AndroidReact控制元件
- Android開發之自定義隨機驗證碼控制元件Android隨機控制元件
- Android Flutter混合開發問題總結(二)AndroidFlutter
- Android 自定義UI元件AndroidUI元件
- android 自定義鍵盤Android
- Android自定義View整合AndroidView
- Android自定義遮罩層Android遮罩
- 自定義Android鍵盤Android
- Android自定義OnTouch事件Android事件