在Android中,onFinishInflate方法是View類中的一個方法,用于在View被inflate(填充)后調用。具體使用方法如下:
public class CustomView extends View {
// ...
public CustomView(Context context) {
super(context);
// ...
}
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
// ...
}
public CustomView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// ...
}
@Override
protected void onFinishInflate() {
super.onFinishInflate();
// 在這里進行View的初始化工作,比如查找子View,設置監聽器等
// ...
}
// ...
}
@Override
protected void onFinishInflate() {
super.onFinishInflate();
// 查找子View
TextView textView = findViewById(R.id.text_view);
// 設置監聽器
textView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// 處理點擊事件
}
});
}
注意事項:
onFinishInflate方法只會在View在XML布局文件中被inflate時調用,而不會在代碼中通過new關鍵字創建View時調用。
如果自定義View是通過在XML布局文件中使用的方式使用的,那么在布局文件中定義的屬性會在onFinishInflate方法調用之前為View設置好。
在onFinishInflate方法中進行的操作應該是輕量級的,不要在這里執行耗時的操作,以免影響界面的響應性能。