Android加载ViewStub使用

延迟加载其他视图

创建viewstub

<ViewStub
    android:id="@+id/viewStub"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout="@layout/two"
    />

调用

ViewStub viewStub = findViewById(R.id.viewStub);
View inflatedView = viewStub.inflate();
TextView textView = inflatedView.findViewById(R.id.textView);
textView.setText("Hello, ViewStub!");
上一篇:【人工智能-初级】第3章 k-最近邻算法(KNN):分类和Python实现


下一篇:AOT漫谈专题(第四篇): C#程序如何编译成Native代码