完成对服务器的异步调用后隐藏视图

时间:2012-02-06 09:49:12

标签: android android-layout visibility android-ui android-asynctask

我正在尝试让我的服务器请求等待响应时显示预加载器

但是当我尝试使用setVisibility(View.GONE);隐藏预加载器时,它不会隐藏(即使其他内容确实可见)

当我运行假设删除预加载器的函数并直接显示其他内容时(不在异步请求的回调中 - 它可以工作)

我的布局看起来像这样(我删除了所有不相关的东西,如android:text属性等。)

[请注意我正在使用的加载器是我制作的自定义视图(我不知道它是否与问题有关)

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    >

    <ImageView
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:src="@drawable/logo" />

 <views.Loader
        android:id="@+id/preloader"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
       />

    <LinearLayout
        android:id="@+id/buttonsArea"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        >

        <Button
            android:id="@+id/my_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/my_dance"
            />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
           />

        <Button
            android:id="@+id/another_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
</LinearLayout>

请注意我正在使用的加载器是自定义视图(我不知道它是否与问题有关)

我的Java代码是:

...
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.my_page);
            init();
    setLoading(true);
    loadData();
}

private void init(){
    preloader = (Loader) findViewById(R.id.preloader);
    buttonsArea= (LinearLayout) findViewById(R.id.buttonsArea);
}


private void loadData(){
    app.getManager().app_init(new OnAppInfoResponse(){
        @Override
        public void onResponse(boolean success) {
            //this method runs on UI Thread through Handler
            setLoading(false);
        }
    });
}

private void setLoading(boolean loading) {
    this.loading = loading;
    if(loading){
        buttonsArea.setVisibility(View.GONE);
        preloader.setVisibility(View.VISIBLE);
    } else {
        buttonsArea.setVisibility(View.VISIBLE);
        preloader.setVisibility(View.GONE);
    }
}

编辑:

甚至更奇怪: 当我删除buttonsArea.setVisibility(View.VISIBLE);行时,预加载器会被隐藏!

非常感谢!!

0 个答案:

没有答案