/shell/res/layout/loading.xml
XML | 17 lines | 13 code | 4 blank | 0 comment | 0 complexity | d897d76c4219fe66ce6bdded45c4ffa0 MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?> 2 3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 android:layout_width="fill_parent" 5 android:layout_height="fill_parent" android:orientation="vertical"> 6 7 <TextView 8 android:layout_width="wrap_content" 9 android:layout_height="wrap_content" android:layout_centerHorizontal="true" 10 android:textSize="30px" 11 android:textColor="#ffffff" 12 android:text="Loading..." /> 13 14 <ProgressBar android:layout_width="wrap_content" 15 android:layout_height="wrap_content"/> 16 17</LinearLayout>