/[caddi]/CaddiPictureUpload/trunk/app/src/main/res/layout/activity_complete_picture.xml
ViewVC logotype

Contents of /CaddiPictureUpload/trunk/app/src/main/res/layout/activity_complete_picture.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download) (as text)
Mon Jul 27 06:41:43 2015 UTC (9 years ago) by torben
File MIME type: text/xml
File size: 2930 byte(s)
First import
1 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
3 android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
4 android:paddingRight="@dimen/activity_horizontal_margin"
5 android:paddingTop="@dimen/activity_vertical_margin"
6 android:paddingBottom="@dimen/activity_vertical_margin"
7 tools:context="com.caddi.android.caddipictureupload.CompletePictureActivity">
8
9 <ScrollView android:id="@+id/picture_form" android:layout_width="match_parent"
10 android:layout_height="match_parent">
11
12 <RelativeLayout
13 android:layout_width="match_parent"
14 android:layout_height="match_parent">
15
16
17 <ImageView
18 android:layout_width="250dp"
19 android:layout_height="250dp"
20 android:id="@+id/imageView"
21 android:layout_centerHorizontal="true"
22 />
23 <Spinner
24 android:layout_width="match_parent"
25 android:layout_height="wrap_content"
26 android:id="@+id/folderSpinner"
27 android:layout_below="@+id/imageView"
28 android:layout_centerHorizontal="true"
29 android:layout_marginTop="12dp"
30 android:background="#FFFFFF"
31 android:spinnerMode="dialog"
32 />
33
34
35 <EditText
36 android:layout_width="fill_parent"
37 android:layout_height="match_parent"
38 android:id="@+id/edtTitle"
39 android:layout_centerHorizontal="true"
40 android:background="#FFFFFFFF"
41 android:layout_marginTop="12dp"
42 android:layout_below="@+id/folderSpinner"
43 android:hint="Titel" />
44
45 <EditText
46 android:layout_width="match_parent"
47 android:layout_height="wrap_content"
48 android:inputType="textMultiLine"
49 android:ems="10"
50 android:id="@+id/edtText"
51 android:layout_below="@+id/edtTitle"
52 android:layout_centerHorizontal="true"
53 android:background="#FFFFFF"
54 android:layout_marginTop="12dp"
55 android:hint="Fri tekst"
56 android:minLines="6"
57 android:gravity="left|top" />
58
59 <Button
60 android:layout_width="match_parent"
61 android:layout_height="wrap_content"
62 android:text="Gem"
63 android:id="@+id/btnSavePicture"
64 android:layout_below="@+id/edtText"
65 android:layout_centerHorizontal="true"
66 android:background="@drawable/buttons"
67 android:layout_marginTop="12dp" />
68
69 </RelativeLayout>
70 </ScrollView>
71
72 </RelativeLayout>

  ViewVC Help
Powered by ViewVC 1.1.20