好的,所以我这样做(不是实际代码)
try {
final View view = LayoutInflater.from(context).inflate(R.layout.ownComponent, null);
} catch (InflateExpection e) {
}
if (view != null) {
// This child is null about 5/10 times!
View child = view.findViewById(R.id.ownComponentChild);
}
我读到在膨胀之后不能保证子视图被膨胀,那么当所有孩子都准备好时,什么是获得回调的好方法?