如何让此警报显示在19以下的apis上?感谢。
AlertDialog.Builder mBuilder = new AlertDialog.Builder(this);
LayoutInflater inflater = this.getLayoutInflater();
View mView = inflater.inflate(R.layout.recover_password_dialog, null);
Button btnSend = (Button) mView.findViewById(R.id.btnRecuperar);
final EditText emailRecover = (EditText) mView.findViewById(R.id.emailRecover);
mBuilder.setView(mView);
btnSend.setOnClickListener(new View.OnClickListener() {
这是困扰我的。
答案 0 :(得分:0)
可能是你在使用
import android.support.v7.app.AlertDialog;
尝试将其更改为
import android.app.AlertDialog;
答案 1 :(得分:0)
我认为您应该为AlertDialog类实现此导入
import android.support.v7.app.AlertDialog;
如果有帮助,请告诉我