自学内容网 自学内容网

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!");

原文地址:https://blog.csdn.net/meixi_android/article/details/143037795

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!