1

我有一个加载自定义 ImageView 的活动(https://github.com/MikeOrtiz/TouchImageView/blob/master/src/com/example/touch/TouchImageView.java)。在 onCreate 中,我使用 setImageBitmap 来显示一个巨大的图像(4Mb ...)。

问题是这个活动需要 4 秒才能显示,但是我没有可以在 AsyncTask 中放置的阻塞方法。我的意思是我的所有活动代码都已执行,但活动仅在图像加载时出现,我不知道它何时完成。

我想要做的是在 Activity 加载它时显示一个 ProgressDialog,并在它完成时显示它。

我该如何解决这个问题?这是一些代码。

希望你能理解我的问题,这很难解释。谢谢 !

carte.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/parentLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<loki.test.lokitest.affichage.TouchImageView 
    android:id="@+id/image"
    android:src="@drawable/loading"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

<Button 
    android:id="@+id/bouton"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:text="@string/textBouton"/>


</RelativeLayout>

CarteActivity.java(耗时 4 秒的那个)

public class CarteActivity extends Activity implements OnClickListener{

private Group groupe;
private String android_id;
private ConnexionServeur serveur;
private TouchImageView vue;


/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    Log.d("Loki","onCreate");
    super.onCreate(savedInstanceState);
    setContentView(R.layout.carte);

    findViewById(R.id.bouton).setOnClickListener(this);

    vue = ((TouchImageView)findViewById(R.id.image));
    vue.setImageBitmap(Singleton.getInstance().getImage());

    groupe = Singleton.getInstance().getGroupe();
    android_id = Singleton.getInstance().getAndroid_id();
    serveur = Singleton.getInstance().getServeur();

    if(groupe != null)
            groupe.afficherGroupe(vue);

    }
}

编辑:图像加载:

image = BitmapFactory.decodeResource(context.getResources(), R.drawable.myImage);

但我不认为这是需要时间的代码,当我使用 setImageBitmap 时它已经完成。我不知道什么需要这么多时间,但我想知道这是否是我可以访问的方法。

4

1 回答 1

2
  • 使Layout xml顶部容器(Top RelativeLayout)携带两个元素

    1 进度条 - 可见性设置为可见。使它变大并在中心

    2 相对布局 - 整个内容正文。先让它不可见。它将在进度条下,并将在高度和宽度方面填满整个屏幕。

  • 在 oncreate setContentView 中,然后启动一个 AysncTask,它在 doInBackground 中加载图像视图。在其 postExecute 中,使内容主体可见,进度条不可见。 只有在加载完成后才会调用 Postexecute

希望这能有所帮助,您可以用代码翻译所有这些内容。

于 2012-05-03T15:49:12.990 回答