我在Android应用程序的AsyncTask
中遇到了一个问题。问题是,我在我的应用程序中从Activity
开始另一个AsyncTask
,当它的布局简单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 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>
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();
}
答案 0 :(得分:2)
我认为你正在使用UI线程(更新UI线程)从非UI线程,这会导致问题。如果要从非UI线程更新任何内容,则需要将代码放在runOnUiThread()
内。
Activity_name.this.runOnUiThread(new Runnable() {
@Override
public void run() {
// here you can add stuff to Update the UI.
}
});
答案 1 :(得分:1)
如果没有完整的堆栈跟踪,很难肯定地说,但我最好的猜测是你实际上得到的是ClassCastException
。
您的ATMActivity
正在尝试将imageButton1
中定义的ImageButton
转换为Button
。// Can't do below: Button is not a superclass of ImageButton
Button btn = (Button) findViewById(R.id.imageButton1);
。这是不可能的,因为后者不是前者的超类。
{{1}}
由于你是从AsyncTask的onPostExecute开始活动的,所以你可能会发现一些在堆栈跟踪中提到looper / handler的东西。