2012-06-08 47 views
8

我想在ListView中的項目上設置一個固定的進度。我只能在ListView中看到一個不確定的旋轉圈......我做錯了什麼? (我敢肯定的答案很簡單......我只是沒有看到它)在listview中的Android進度條總是不確定

對於下列適配器佈局XML:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:orientation="vertical" 
    > 
<TextView 
     android:id="@+id/some_text" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     /> 
<ProgressBar 
     android:id="@+id/some_progress" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     /> 

代碼:

public class SomeListAdapter extends ArrayAdapter<MyItem> { 

private static class ViewHolder { 
    TextView nameTextView; 
    ProgressBar valueProgressBar; 
} 

public BestChoiceListAdapter(Context context, List<MyItem> items) { 
    super(context, R.layout.list_item, items); 
} 

@Override 
public View getView(int position, View convertView, ViewGroup parent) { 
    ViewHolder holder; 
    View view = convertView; 
    if (view == null) { 
     LayoutInflater vi = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
     view = vi.inflate(R.layout.list_item, null); 

     holder = new ViewHolder(); 
     holder.nameTextView = (TextView) view.findViewById(R.id.some_text); 
     holder.valueProgressBar = (ProgressBar) view.findViewById(R.id.some_progress); 

     view.setTag(holder); 
    } else { 
     holder = (ViewHolder) convertView.getTag(); 
    } 

    MyItem optionItem = getItem(position); 

    holder.nameTextView.setText(optionItem.getOptionName()); 
    int progress = (int) (optionItem.getOptionValue()); 

    holder.valueProgressBar.setProgress(progress); 

    return view; 
} 
} 

回答

12

最簡單的方法是水平形式適用於它:

<ProgressBar 
    android:id="@+id/some_progress" 
    style="@android:style/Widget.ProgressBar.Horizontal" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    /> 

這將設置所有屬性,你會以其他方式需要手動添加到應用確定進度模式。

如果你很好奇,這是一個系統的風格是什麼樣的,如果你想單獨應用屬性:

<style name="Widget.ProgressBar.Horizontal"> 
    <item name="android:indeterminateOnly">false</item> 
    <item name="android:progressDrawable">@android:drawable/progress_horizontal</item> 
    <item name="android:indeterminateDrawable">@android:drawable/progress_indeterminate_horizontal</item> 
    <item name="android:minHeight">20dip</item> 
    <item name="android:maxHeight">20dip</item> 
</style> 

HTH

+0

這樣做!我希望這更明顯。 –

0

indeterminate mode更改爲false!

<ProgressBar 
    android:id="@+id/some_progress" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:indeterminate="false" 
    /> 
+1

我曾經嘗試這樣做,這不能解決問題無論是。 –

相關問題