Wednesday, 12 October 2011

progressbar

for this progressbar we require mainly main.xml and progressbar,xml firles only

<?
<
xml version="1.0" encoding="utf-8"?>animation-list xmlns:android="http://schemas.android.com/apk/res/android"
android:oneshot="false">
<item android:drawable="@drawable/p1" android:duration="200" />
<item android:drawable="@drawable/p2" android:duration="200" />
</

main.xml

<?
xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello"
/>
<ProgressBar
android:id="@+id/progress_bar"
android:layout_width="fill_parent"
android:layout_height="20dip"
android:indeterminateDrawable="@drawable/progress_indeterminate_horizontal"
/></LinearLayout>
<item android:drawable="@drawable/p3" android:duration="200" />animation-list>

No comments:

Post a Comment