bashgid/android/res/layout/news_page_list_header.xml

29 lines
1.1 KiB
XML
Raw Normal View History

2014-11-13 01:52:15 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/bkg1"
android:orientation="vertical"
android:paddingLeft="20dp"
android:paddingRight="20dp"
tools:context="fishrungames.bashgid.MainPageFragment" >
<TextView
2015-06-11 06:17:27 +00:00
android:id="@+id/dateTextView"
2014-11-13 01:52:15 +00:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_margin="@dimen/medium_margin"
2014-11-13 01:52:15 +00:00
android:text="@string/news_header"
android:textSize="@dimen/large_text_size"
2014-11-13 01:52:15 +00:00
android:textStyle="bold" />
2015-06-25 19:00:11 +00:00
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="@dimen/progress_bar_size"
android:layout_height="@dimen/progress_bar_size"
2015-06-25 19:00:11 +00:00
android:layout_gravity="center_horizontal"
android:indeterminate="true" />
2014-11-13 01:52:15 +00:00
</LinearLayout>