Skip to content

Instantly share code, notes, and snippets.

@CreatorB
Created November 26, 2014 06:14
Show Gist options
  • Save CreatorB/3da7c97359f714d5ad83 to your computer and use it in GitHub Desktop.
Save CreatorB/3da7c97359f714d5ad83 to your computer and use it in GitHub Desktop.
Snippet Code of How to Create RSS Feed Android app on http://creatorb-lab.blogspot.com/2014/11/cara-membuat-aplikasi-android-rss-feed.html
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/splashscreen" >
<FrameLayout
android:id="@+id/FrameLayout1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true" >
<ProgressBar
android:id="@+id/progressBar1"
style="?android:attr/progressBarStyleSmall"
android:layout_width="109dp"
android:layout_height="105dp"
android:layout_gravity="center" />
</FrameLayout>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment