4

我是 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 始终是可见的。

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

我非常感谢您的帮助,

谢谢你。

4

1 回答 1

0

<include /> 只会在您的基本 xml 文件中包含 xml 内容,就好像整个内容只是一个大文件一样。这是在不同布局之间共享布局部分的好方法。

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

于 2015-03-06T20:07:38.690 回答