| @@ -0,0 +1,23 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <!-- | ||
| Copyright (c) 2010 Ushahidi Inc All rights reserved Contact: team@ushahidi.com | ||
| Website: http://www.ushahidi.com GNU Lesser General Public License Usage | ||
| This file may be used under the terms of the GNU Lesser General Public License | ||
| version 3 as published by the Free Software Foundation and appearing in the | ||
| file LICENSE.LGPL included in the packaging of this file. Please review the | ||
| following information to ensure the GNU Lesser General Public License version | ||
| 3 requirements will be met: http://www.gnu.org/licenses/lgpl.html. If you | ||
| have questions regarding the use of this file, please contact Ushahidi developers | ||
| at team@ushahidi.com. | ||
| --> | ||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="wrap_content" | ||
| android:orientation="horizontal"> | ||
|
|
||
| <TextView | ||
| android:id="@+id/footer_text" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content"/> | ||
|
|
||
| </LinearLayout> |
| @@ -0,0 +1,29 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" | ||
| android:layout_gravity="center_vertical" | ||
| android:background="@color/background_color" | ||
| android:gravity="center" | ||
| android:orientation="vertical" > | ||
|
|
||
| <ViewAnimator | ||
| android:id="@+id/news_View_animator" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" > | ||
|
|
||
| <ProgressBar | ||
| android:id="@+id/news_loading_spinner" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_gravity="center" | ||
| android:indeterminate="true" | ||
| android:visibility="gone" /> | ||
|
|
||
| <WebView | ||
| android:id="@+id/news_webview" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" /> | ||
| </ViewAnimator> | ||
|
|
||
| </LinearLayout> |
| @@ -0,0 +1,16 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" | ||
| android:layout_gravity="center_vertical" | ||
| android:gravity="center" | ||
| android:orientation="vertical" > | ||
|
|
||
| <ImageSwitcher | ||
| android:id="@+id/imageSwitcher" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_gravity="center_vertical" | ||
| android:gravity="center" /> | ||
|
|
||
| </LinearLayout> |
| @@ -0,0 +1,29 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" | ||
| android:layout_gravity="center_vertical" | ||
| android:background="@color/background_color" | ||
| android:gravity="center" | ||
| android:orientation="vertical" > | ||
|
|
||
| <ViewAnimator | ||
| android:id="@+id/videoViewAnimator" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" > | ||
|
|
||
| <ProgressBar | ||
| android:id="@+id/loading_spinner" | ||
| android:layout_width="wrap_content" | ||
| android:layout_height="wrap_content" | ||
| android:layout_gravity="center" | ||
| android:indeterminate="true" | ||
| android:visibility="gone" /> | ||
|
|
||
| <WebView | ||
| android:id="@+id/videoWebView" | ||
| android:layout_width="match_parent" | ||
| android:layout_height="match_parent" /> | ||
| </ViewAnimator> | ||
|
|
||
| </LinearLayout> |