在我的应用中,单击按钮后,进度对话框应显示出来。现在显示了进度对话框,但没有微调框或加载栏(对不起,我不确定调用的是什么)
这是我的进度对话框在android 8.0真实设备中的样子
这是我的进度对话框在android 5.0中的样子
private ProgressDialog progressDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_login);
progressDialog = new ProgressDialog(Login.this);
}
public void loginUser(View v) {
final String Email = emailText.getText().toString();
final String password = passwordText.getText().toString();
progressDialog.setMessage("Logging in....");
progressDialog.setCanceledOnTouchOutside(false);
progressDialog.show();
if (TextUtils.isEmpty(Email)) {
emailText.setError("Email is required");
}
if (TextUtils.isEmpty(password)) {
passwordText.setError("password is required");
}
if ((!TextUtils.isEmpty(Email)) && (!TextUtils.isEmpty(password))) {
mAuth.signInWithEmailAndPassword(Email, password)
.addOnCompleteListener(this, new OnCompleteListener<AuthResult>() {
@Override
public void onComplete(@NonNull Task<AuthResult> task) {
if (!task.isSuccessful()) {
Toasty.error(getApplicationContext(), "Login Failed",
Toast.LENGTH_SHORT, true).show();
progressDialog.dismiss();
} else {
Toasty.success(getApplicationContext(), "Login Success",
Toast.LENGTH_SHORT, true).show();
Intent intent = new Intent(Login.this, Admins.class);
intent.putExtra("Email", emailText.getText().toString());
startActivity(intent);
}
}
}
有人可以帮我解决这个问题吗?
答案 0 :(得分:4)
ProgressDialog
已从SDK 26中弃用。您应使用
ProgressBar
用法:
在布局中添加视图:
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="@+id/parent"
app:layout_constraintBottom_toBottomOf="@+id/parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:indeterminate="true"
android:max="100"
android:visibility="gone"/>
在活动中声明您的progressBar
ProgressBar progressBar;
在onCreate
中获取视图
progressBar = findViewById(R.id.progressBar);
当您需要显示progressBar时:
progressBar.setVisibility(View.VISIBLE);
当您需要它消失时:
progressBar.setVisibility(View.GONE);
有关更多详细信息,请查看ProgressBar文档
在ProgressBar
启动时禁用用户交互可能会有所帮助。
编辑
禁用交互
getWindow().setFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE,
WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
重新启用互动:
getWindow().clearFlags(WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
编辑2
您无需按照Material Design模式(Progress Indicators)复制ProgressDialog
视觉。
编辑3
以下是我在评论中对您说过的例子。它是视图内ProgressBar的布局
<?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=".MainActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_margin="16dp"
android:visibility="visible"
android:background="#EFEFEF">
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Things to do"
android:textSize="30sp"
android:layout_marginLeft="10dp"
android:layout_marginStart="10dp"/>
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:indeterminate="true"
android:max="100"
android:visibility="visible"
android:layout_below="@+id/title"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Please wait we are doing things..."
android:layout_below="@+id/title"
android:layout_toRightOf="@+id/progressBar"
android:layout_toEndOf="@+id/progressBar"/>
</RelativeLayout>
</android.support.constraint.ConstraintLayout>
您可以为API 21或更高版本设置海拔高度:
android:elevation="10dp"
正如您在评论中所问的那样,这只是一个示例,不是推荐。这不是您一生中会看到的最漂亮的布局,但是它将带给您北方的感觉。