具有可见性GONE的LinearLayout是否消耗零资源?

时间:2012-05-25 23:15:22

标签: android progress-bar visibility drawable android-linearlayout

我在考虑如何实现显示图像的 ImageView ,当我用新图像刷新其内容时,它会显示带有圆形右边的ProgressBar ,所以我编写了下面附带的代码。这是实现我想要的正确方法吗?带有 TextView ProgressBar LinearLayout 在可见性设置为GONE时是否消耗零资源?当 ProgressBar 本身或它的父布局的可见性设置为GONE时, ProgressBar 本身是否消耗零资源(我正在考虑循环圈动画的进度)?如果我将它设置为INVISIBLE,由于布局管理,它应该消耗一些资源,但是它仍然不应该消耗资源来为进度循环设置动画,对吧?

编辑:当我说上面“它消耗了资源”时,我的意思是CPU资源,因为它显然消耗了一些内存资源,因为当我只是设置时我没有释放视图它对 GONE 的可见性。我在第一条评论和第一个答案之后添加了这条评论。

我希望下面的代码是正确的,以防其他像我这样的新手想知道如何实现同样的事情。

按照代码和在模拟器上显示结果的图像:

enter image description here

main.xml中          

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <ImageView
            android:id="@+id/image_view1"
            android:src="@drawable/fish"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:scaleType="centerCrop"
            android:contentDescription="image view 1" />


       <LinearLayout
           android:id="@+id/layout_progress"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:layout_gravity="center_vertical"
           android:background="@drawable/filled_rectangle"
           android:gravity="center_vertical|center_horizontal"
           android:orientation="horizontal"
           android:visibility="gone" >

           <TextView
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:gravity="fill_horizontal"
               android:text="Loading..."  
               android:textSize="30sp" 
               android:layout_gravity="center_vertical"/>

               <!-- style="@android:style/Widget.ProgressBar.Small" --> 
           <ProgressBar
               android:id="@+id/progress_bar1"
               android:layout_width="wrap_content"
               android:layout_height="wrap_content"
               android:layout_gravity="center_vertical"
               android:indeterminateOnly="true"/>

       </LinearLayout>
   </FrameLayout>

   <Button
       android:id="@+id/refresh_image"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content"
       android:layout_gravity="center_horizontal"
       android:onClick="onClick" 
       android:text="@string/refresh_image"/>

</LinearLayout>

可绘/ filled_rectangle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">
    <solid android:color="#80000000"/>
</shape>

TestFrameLayoutActivity.java

public class TestFrameLayoutActivity extends Activity {
    private int progressVisible;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        LinearLayout layout = (LinearLayout) findViewById(R.id.layout_progress);
        progressVisible = (layout.getVisibility() == View.VISIBLE)?1:0;
    }

    public void onClick (View view) {
        progressVisible = 1 - progressVisible;
        LinearLayout layout = (LinearLayout) findViewById(R.id.layout_progress);
        ImageView img = (ImageView) findViewById(R.id.image_view1);

        if (progressVisible == 1) {
            layout.setVisibility(ProgressBar.VISIBLE);
        } else {
            layout.setVisibility(ProgressBar.GONE);
        }
    }
}

1 个答案:

答案 0 :(得分:9)

没有。它在屏幕上显示的内容是GONE,但在R.java中仍然有一个内存映射,它可用于View。

如果您创建了一个包含数十亿GONE子节点的视图,则可能会因内存耗尽而崩溃。

也就是说,它消耗的资源更少,因为它不需要调用onMeasure()onDraw()