ProgressBar: default round shape

ProgressBar: default round shape

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/progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>




Related Posts :

  • Spinnerworkspace/AndroidSpinner/res/layout/main.xml<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.andro… Read More...
  • How to remove the Title BarIn order to turning off the title at the top of the screen, simple call the requestWindowFeature(Window.FEATURE_NO_TITLE) in your code. req… Read More...
  • Clear the status bar notificationTo clear the status bar notification when the user selects it from the Notifications window, add the "FLAG_AUTO_CANCEL" flag to your Notific… Read More...
  • Pro Android 3Product DescriptionAndroid is hot—Android device sales are increasing and even challenging those of the ubiquitous iPhone. If you're a devel… Read More...
  • Start Location setting if GPS disabledThe following code can be used to start Location setting: Intent intent = new Intent(Settings.ACTION_SECURITY_SETTINGS);startActivity(intent… Read More...

0 Response to "ProgressBar: default round shape"

Posting Komentar