《Error IllegalStateException异常:DialogActivity设置报错》

一、代码

    1.java代码

public class DialogActivity extends AppCompatActivity {

    @BindView(R.id.tv)
    TextView tv;
    @BindView(R.id.btn)
    Button btn;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
        setContentView(R.layout.activity_dialog);

        ButterKnife.bind(this);
        btn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                ToastUtil.showToast(DialogActivity.this, "点我有没有用呢?");
                tv.setText("你真的点我啊!");
            }
        });
    }
}

    2.AndroidManifest.xml文件配置代码

<activity
    android:name=".Activity.Activity2.DialogActivity"
    android:theme="@android:style/Theme.Dialog"></activity>

    3.布局xml文件代码

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_dialog"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.administrator.firstlinecode.Activity.Activity2.DialogActivity">

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:gravity="center">

        <TextView
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentStart="true"
            android:gravity="center"
            android:text="我是DialogActivity" />

        <Button
            android:id="@+id/btn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_alignParentLeft="true"
            android:layout_alignParentRight="true"
            android:layout_alignParentStart="true"
            android:layout_below="@+id/tv"
            android:layout_marginTop="10dp"
            android:gravity="center"
            android:text="点不点我?" />
    </RelativeLayout>

</RelativeLayout>

二、异常日志打印

 Caused by: java.lang.IllegalStateException: 
        You need to use a Theme.AppCompat theme (or descendant) with this activity.

三、异常分析

    从上面看字面意思可知道:在不合理的地方用了某种方法的异常,你需要使用一个主题。与此活动AppCompat主题(或后代)。

所以,我们只需要把java代码中 extend AppCampatActivity 改成 extend Activity 即可。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值