我已经成功创建了一个自定义对话框。对话框运行良好。我ListView
用来列出特定路径中的所有文件。我的自定义对话框包含文件名和复选框。可以移动或删除选定的文件。所有这些工作正常。
我需要在对话框中添加进度条。因为可以删除或移动文件需要一些时间。如何添加进度条。请帮我。
示例屏幕截图:-(如何在绿色中添加进度条)
谢谢你。
我已经成功创建了一个自定义对话框。对话框运行良好。我ListView
用来列出特定路径中的所有文件。我的自定义对话框包含文件名和复选框。可以移动或删除选定的文件。所有这些工作正常。
我需要在对话框中添加进度条。因为可以删除或移动文件需要一些时间。如何添加进度条。请帮我。
示例屏幕截图:-(如何在绿色中添加进度条)
谢谢你。
Bala 将您创建为对话框的自定义布局插入具有自定义颜色的水平 SCrollBar 中具有绿色颜色的水平进度条的代码。
您已经写过您知道如何创建自定义对话框,但我想先发布它:
final Dialog dialog = new Dialog(MyActivity.this, R.style.CustomDialogTheme);
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
dialog.setContentView(R.layout.info_dialog);
dialog.setTitle("Info");
dialog.setCancelable(false);
Button deleteButton = (Button) dialog.findViewById(R.id.deleteButton);
ProgressBar progressBar = (Button) dialog.findViewById(R.id.progressBar);
deleteButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// start progress
}
});
dialog.show();
对于 info_dialog.xml 文件使用
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<ProgressBar
android:id="progressBar"
style="@android:style/Widget.ProgressBar.Horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</LinearLayout>