ViewStub和View之间有什么区别吗?

时间:2015-03-06 19:35:34

标签: performance android-view android-memory viewstub

我是Android开发的新手。 我从https://developer.android.com/training/improving-layouts/loading-ondemand.html

了解了ViewStub

它提到它使用它便宜且内存较少。

我有以下内容:

MainLayout.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>

的test.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>

MainActivity:

    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中至少调用了一次ViewStub,那么因为test.xml布局被添加到活动中,所以不应该是更多的内存使用吗?

我可以看到ViewStub总是可见的,除非它被称为View.Gone ....

有人可以解释两者之间的区别吗?

我非常感谢你的帮助,

谢谢。

1 个答案:

答案 0 :(得分:0)

&lt;包括/&gt;只会将xml内容包含在基本xml文件中,就像整个文件只是一个大文件一样。这是在不同布局之间共享布局部分的好方法。

&lt; ViewStub /&gt;有点不同,因为它不是直接包含的,只有在您实际使用它/需要它时才会加载,即,当您将其可见性设置为VISIBLE(实际可见)或INVISIBLE(仍然不可见,但其大小不是'时) t 0了。这是一个很好的优化,因为您可以在任何地方使用大量小视图或标题的复杂布局,并且仍然可以非常快速地加载您的活动。一旦你使用其中一个视图,它就会被加载。