E / AbstractTracker:无法在未调用Looper.prepare()的线程内创建处理程序

时间:2017-09-23 01:39:34

标签: java android thread-safety android-looper

我无法弄清楚为什么会出现这种错误。我刚刚安装了android studio的ver 2.3.3并且有以下基本代码。

关于如何解决这个问题的任何想法?

package com.example.eoinclancy.fantastictwo;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
}


}

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 


xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.eoinclancy.fantastictwo.MainActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

</android.support.constraint.ConstraintLayout>

enter image description here

0 个答案:

没有答案