diff options
| author | Eskil Abrahamsen Blomfeldt <[email protected]> | 2013-02-13 09:08:37 +0100 |
|---|---|---|
| committer | Eskil Abrahamsen Blomfeldt <[email protected]> | 2013-02-14 09:29:47 +0100 |
| commit | 27438946427ea006a2dfb6369fdb742abcf9ea05 (patch) | |
| tree | fa3ad8f3b0618cc14b437413452906de273d017f /Ministro/res/layout | |
| parent | 2ef46bbfada155ae65e999f633f7edfda751438a (diff) | |
| parent | f71e67d47f681b55a8b68d051e607e8478958638 (diff) | |
Change-Id: I4b5bf0cbceebc4823c444617d19cd6dd9d6b2e02
Diffstat (limited to 'Ministro/res/layout')
| -rw-r--r-- | Ministro/res/layout/main.xml | 10 | ||||
| -rw-r--r-- | Ministro/res/layout/repoconfig.xml | 33 |
2 files changed, 43 insertions, 0 deletions
diff --git a/Ministro/res/layout/main.xml b/Ministro/res/layout/main.xml new file mode 100644 index 0000000..09e59c7 --- /dev/null +++ b/Ministro/res/layout/main.xml @@ -0,0 +1,10 @@ +<?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" + > + +<ImageView android:layout_width="fill_parent" android:src="@drawable/logo" android:visibility="visible" android:layout_height="fill_parent" android:id="@+id/image" android:scaleType="fitXY"></ImageView> + +</LinearLayout> diff --git a/Ministro/res/layout/repoconfig.xml b/Ministro/res/layout/repoconfig.xml new file mode 100644 index 0000000..f730e0e --- /dev/null +++ b/Ministro/res/layout/repoconfig.xml @@ -0,0 +1,33 @@ +<?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:layout_marginTop="10dip" + android:text="@string/repositories_prompt" + /> + <Spinner + android:id="@+id/repositories" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:drawSelectorOnTop="true" + android:prompt="@string/repositories_prompt" + /> + <TextView + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:layout_marginTop="10mm" + android:text="@string/check_frequency" + /> + <Spinner + android:id="@+id/check_frequency" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:drawSelectorOnTop="true" + android:prompt="@string/check_frequency" + /> +</LinearLayout> |