<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffcc99" > <ImageView android:id="@+id/imgadd" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="fitXY" /> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginBottom="50dp" android:layout_marginTop="90dp" android:paddingLeft="16dp" android:paddingRight="16dp"> <ScrollView android:id="@+id/scrollView" android:layout_width="match_parent" android:layout_height="wrap_content"> <LinearLayout android:layout_width="match_parent" android:layout_height="450dp" android:background="#a7ffffff" android:orientation="vertical" android:padding="16dp"> //Name Sotre <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp"> <EditText android:id="@+id/etName" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:hint="Name Store" android:textColor="#77000000" android:textColorHint="#77000000" /> </android.support.design.widget.TextInputLayout> //Detail <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp"> <EditText android:id="@+id/etDetail" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:hint="Please Enter detail of promotion" android:textColor="#77000000" android:textColorHint="#77000000" /> </android.support.design.widget.TextInputLayout> <Spinner android:id="@+id/spinner1" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentLeft="true" android:layout_below="@+id/textView1" android:layout_marginTop="15dp" android:entries="@array/type_array" /> <TextView android:id="@+id/etemail" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:gravity="center" android:text="Photo" android:textColor="#77000000" android:textColorHint="#77000000" android:textSize="18dp" /> <LinearLayout android:layout_gravity="center" android:layout_width="100dp" android:layout_height="100dp"> <ImageView android:id="@+id/imageView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> </LinearLayout> <Button android:id="@+id/btChoose" android:layout_width="330dp" android:layout_height="20dp" android:layout_gravity="center" android:layout_marginTop="16dp" android:background="#f93d37" android:text="CHOOSE PHOTO" android:textColor="#ffffff" android:textSize="16sp" /> //Enter Address promotion <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp"> <EditText android:id="@+id/etAddress" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:hint="Enter Address promotion" android:textColor="#77000000" android:textColorHint="#77000000" /> </android.support.design.widget.TextInputLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal"> <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp"> <EditText android:id="@+id/etStart" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:layout_weight="1" android:hint="Startdate" android:inputType="date" android:textColor="#77000000" android:textColorHint="#77000000" /> </android.support.design.widget.TextInputLayout> <Button android:id="@+id/btnStart" android:layout_width="50dp" android:background="@drawable/unnamed" android:layout_height="50dp" /> </LinearLayout> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:layout_marginTop="5dp" android:orientation="horizontal"> <android.support.design.widget.TextInputLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="5dp"> <EditText android:id="@+id/etEnd" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:layout_weight="1" android:hint="Expirationdate" android:inputType="date" android:textColor="#77000000" android:textColorHint="#77000000" /> </android.support.design.widget.TextInputLayout> <Button android:id="@+id/btnEnd" android:layout_width="50dp" android:background="@drawable/unnamed" android:layout_height="50dp" /> </LinearLayout> <RadioGroup android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:orientation="horizontal"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="5dp" android:text="Status" android:textSize="18dp" /> <RadioButton android:id="@+id/radioCustomer" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:hint="Customer" android:textSize="15dp" /> <RadioButton android:id="@+id/radioOwner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="15dp" android:hint="ShopOwner" android:textSize="15dp" /> </RadioGroup> <Button android:id="@+id/btAddpro" android:layout_width="330dp" android:layout_height="wrap_content" android:layout_gravity="center" android:layout_marginTop="16dp" android:background="#f93d37" android:text="SUBMIT" android:textColor="#ffffff" android:textSize="18sp" /> </LinearLayout> </ScrollView> </LinearLayout> <LinearLayout android:id="@+id/linearLayout" android:layout_width="match_parent" android:layout_height="50dp" android:layout_alignParentBottom="true" android:layout_centerHorizontal="true" android:orientation="horizontal"> <Button android:id="@+id/btHome" android:layout_width="60dp" android:layout_height="match_parent" android:layout_marginLeft="28dp" android:background="#00123321" android:text="" /> <Button android:id="@+id/btMenu" android:layout_width="60dp" android:layout_height="match_parent" android:layout_marginLeft="25dp" android:background="#00123321" android:text="" /> <Button android:id="@+id/btProfile" android:layout_width="60dp" android:layout_height="match_parent" android:layout_marginLeft="27dp" android:background="#00123321" android:text="" /> <Button android:id="@+id/btLogout" android:layout_width="60dp" android:layout_height="match_parent" android:layout_marginLeft="20dp" android:background="#00123321" android:text="" /> </LinearLayout> </RelativeLayout>
Quote:<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#ffcc99" >
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง