Search This Blog

Tuesday 12 July 2016

How To Show Circle Progress Bar

<LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="@color/dark_grey" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:padding="10dp" android:text="Raw Material Availability" android:layout_marginLeft="10dp" android:textColor="@color/white" android:textSize="20sp" android:textStyle="bold" /> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:background="#2196f3" android:layout_marginLeft="10dp" android:layout_marginRight="10dp" android:padding="20dp" android:orientation="horizontal"> <Button android:layout_width="100sp" android:layout_height="100sp" android:background="@drawable/mybutton" android:gravity="center" android:layout_gravity="center" android:text="Full" android:textColor="@color/white"/> </LinearLayout> </LinearLayout>

No comments:

Post a Comment