我是 Android 开发的新手。我从https://developer.android.com/training/improving-layouts/loading-ondemand.html了解了 ViewStub
它提到它便宜且使用它的内存更少。
我有以下内容:
主布局.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Layout1"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@color/blue"
android:orientation="vertical" >
.....
.....
<Button android:id="@+id/ShowBackground"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
<Button android:id="@+id/ShowBackground2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:text="@string/title_close" />
<View
android:id="@+id/ShowView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/blue" />
<ViewStub
android:id="@+id/ShowViewStub"
android:layout="@layout/test"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone" />
</RelativeLayout>
测试.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ShowViewLayout"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@color/blue_dimmer"
android:orientation="vertical" >
</RelativeLayout>
主要活动:
private ViewStub mViewStub;
private View mView;
private Button mBackground1;
private Button mBackground2
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.MainLayout);
mView = (ViewStub) findViewById(R.id.ShowView);
mViewStub = (ViewStub) findViewById(R.id.ShowViewStub);
mBackground1 = (Button)this.findViewById(R.id.ShowBackground);
mBackground1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mView.setVisibility(View.VISIBLE);
}
});
}
mBackground2 = (Button)this.findViewById(R.id. ShowBackground2);
mBackground2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mViewStub.setVisibility(View.VISIBLE);
}
});
}
问题:
View 和 ViewStub 在 MainActivity 中工作正常。
我确实了解 ViewStub 对于很少使用的视图很有用。如果在 MainActivity 中至少调用了 1 次 ViewStub,那么由于 test.xml 布局被添加到活动中,不应该是更多的内存使用吗?
正如我所看到的,除非它被称为 View.Gone...,否则 ViewStub 始终是可见的。
有人可以解释一下两者之间的区别吗?
我非常感谢您的帮助,
谢谢你。