0

我正在使用ExpandableListActivityand 在底部我有一个 ProgressBar 来确定检查了多少行。

活动的 XML:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<LinearLayout
    android:id="@+id/activity_main_content"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:weightSum="100" >

    <include
        android:id="@+id/activity_checklist_titlebar"
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="10"
        layout="@layout/titlebar" />

    <ExpandableListView
        android:id="@+id/android:list"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="90" >
    </ExpandableListView>
</LinearLayout>

<ProgressBar
    android:id="@+id/activity_checklist_progress"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="@dimen/height_activity_checklist_progress"
    android:layout_alignParentBottom="true" />

<TextView
        android:id="@+id/activity_checklist_progress_text"
        style="@style/Text.Strong.Medium"
        android:layout_width="wrap_content"
        android:layout_height="@dimen/height_activity_checklist_progress"
        android:gravity="center"
        android:layout_alignParentBottom="true"
        android:layout_centerHorizontal="true"
        android:text="0/50" />

</RelativeLayout>

我在这里更新进度:

@Override
public View getGroupView(int groupPosition, boolean isExpanded, View convertView, ViewGroup parent) 
{
    // ...
    TextView overall_progress_text = 
       (TextView) main_layout.findViewById(R.id.activity_checklist_progress_text);
        int overall_progress = checklist.getProgress();
        overall_progress_text.setText(overall_progress + "/" + checklist.size());
    ProgressBar overall_progress_bar = 
       (ProgressBar) main_layout.findViewById(R.id.activity_checklist_progress);
        overall_progress_bar.setProgress(overall_progress);
        overall_progress_bar.setMax(checklist.size());

    return convertView;
}

如您所见,我有一个 TextView 也显示了进度,显然这些值很好。当我开始更改列表中复选框的状态时,一切正常,唯一的问题是在活动开始时。

progressBar 显示了这一点(我认为最大值是“100”而不是“9”):

在此处输入图像描述

4

2 回答 2

2

我只是解决了在进度之前设置最大值的问题。即使您在进度后立即设置最​​大值,Android 的 ProgressBar 似乎也不起作用......

改变了这个:

overall_progress_bar.setProgress(overall_progress);
overall_progress_bar.setMax(checklist.size());

对此:

overall_progress_bar.setMax(checklist.size());
overall_progress_bar.setProgress(overall_progress);
于 2012-12-01T12:14:46.333 回答
0

您可以使用 Async Task查看进度,在onProgressUpdate中您可以放置​​进度对话框或进度条..

于 2012-12-01T11:57:56.600 回答