如何在Android应用中的ProgressBar
的每个项目中添加GridView
?我需要在GridView
元素的右上角有进度条。
答案 0 :(得分:1)
您需要创建一个自定义适配器,它会扩展包含ProgressBar的视图。然后在运行时期间,您需要更新ProgressBar的进度。这是一些让你入门的基本例子。
row_grid_view
只是一个包含进度条的布局。您必须使用可用的布局来查看适合您需求的内容。一个友好的警告:如果布局是适配器的一部分,不使用RelativeLayout。如果您不知道自己在做什么,它们的使用成本会非常高昂:)
ProgressBarAdapter
是一个显示ProgressItem
列表的适配器。这些项目只包含它们自己的进度,以便它们可用于更新每个ProgressBar的进度。
row_grid_view.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ProgressBar
android:id="@+id/progress"
android:layout_width="wrap_content"
android:max="100"
android:layout_height="wrap_content"
style="@style/Widget.AppCompat.ProgressBar.Horizontal" />
</FrameLayout>
ProgressBarAdapter
public class ProgressShowingAdapter extends BaseAdapter {
private ArrayList<ProgressItem> mData;
private LayoutInflater mInflater;
public ProgressShowingAdapter(Context context) {
this.mInflater = LayoutInflater.from(context);
}
@Override
public int getCount() {
return mData.size();
}
@Override
public ProgressItem getItem(int position) {
return mData.get(position);
}
@Override
public long getItemId(int position) {
// if your items have any unique ids, return that instead
return position;
}
public void setData(List<ProgressItem> newData) {
this.mData.clear();
if (newData != null && !newData.isEmpty()) {
mData.addAll(newData);
}
}
private static class ViewHolder {
private ProgressBar mProgress;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// view holder pattern
ViewHolder vh = null;
if (convertView == null) {
vh = new ViewHolder();
convertView = mInflater.inflate(R.layout.row_grid_view, parent, false);
vh.mProgress = (ProgressBar) convertView.findViewById(R.id.progress);
convertView.setTag(vh);
} else {
vh = (ViewHolder) convertView.getTag();
}
ProgressItem mItem = getItem(position);
vh.mProgress.setProgress(mItem.getProgress());
// do the remaining of the stuff here
return convertView;
}
}
ProgressItem
public class ProgressItem {
private int mProgress;
public ProgressItem(int mProgress) {
this.mProgress = mProgress;
}
public int getProgress() {
return mProgress;
}
}
答案 1 :(得分:0)
你可以使用这个教程 http://www.tutorialspoint.com/android/android_grid_view.htm 我认为这对你有用