我不知道如何实现导航抽屉项目的进度条。我想为下载运行一些异步任务。下载过程中应显示进度条与某些项目一致。下载完成后,我想在导航抽屉上隐藏进度条。 我有自定义抽屉适配器与数据模型,但我不知道如何隐藏正确的项目的右进度条。 样品对我来说是最好的治疗方法。 谢谢你的帮助,
这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:id="@+id/headerLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="20dp">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/drawerTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_weight="1" />
<ProgressBar
android:id="@+id/drawerHeaderProgress"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:visibility="gone"/>
<CheckBox
android:id="@+id/drawerHeaderCheck"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="2dp"
android:layout_marginBottom="1dp"
android:layout_marginTop="1dp"
android:background="#DADADC" />
</LinearLayout>
</RelativeLayout>
雷达。