gpt4 book ai didi

android - android中AsyncTask中启动Activity的问题

转载 作者:行者123 更新时间:2023-11-29 18:15:37 27 4
gpt4 key购买 nike

我在 Android 应用程序的 AsyncTask 中遇到了一个问题。问题是,我在我的应用程序中从 AsyncTask 开始另一个 Activity,当它的布局具有简单的 Button 时运行良好,但是当我使用ImageButton 它给我处理程序和 looper.loop 的错误。我不明白发生这种错误的原因。我在调用 Activity 时显示带有图像的菜单。

谁能告诉我这里面有什么问题,我怎样才能实现这种功能?

protected void onPostExecute(Void result) {
super.onPostExecute(result);
if (Dialog != null && Dialog.isShowing()) {
Dialog.dismiss();
locationManager.removeUpdates(locationListener);
Intent homeIntent = new Intent(ATMActivity.this.getApplicationContext(), HomeMenuActivity.class);
homeIntent.putExtra("lat", latitude);
homeIntent.putExtra("lng", longitude);
startActivity(homeIntent);
}
}

XML 文件:-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:orientation="vertical" >

<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/atm_icon"
android:onClick="buttonClicked" />

</LinearLayout>

另一个 Activity 类:-

protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.home);

Button btn = (Button) findViewById(R.id.imageButton1);
btn.setHint("ATM");
float latitude = getIntent().getFloatExtra("lat", 0);
float longitude = getIntent().getFloatExtra("lng", 0);
Toast.makeText(getApplicationContext(), "Location Floats:- " + latitude + "," + longitude, Toast.LENGTH_LONG).show();
}

最佳答案

我认为您正在使用来自非 UI 线程的 UI 线程(更新 UI 线程),这导致了您的问题。如果您想从非 UI 线程更新任何内容,您需要将代码放在 runOnUiThread() 中。

Activity_name.this.runOnUiThread(new Runnable() {

@Override
public void run() {
// here you can add stuff to Update the UI.
}
});

关于android - android中AsyncTask中启动Activity的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8277097/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com