Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical" android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/index_background">
- <ScrollView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <RelativeLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent">
- <LinearLayout
- android:id="@+id/row1"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:background="@drawable/header"
- android:layout_marginTop="15dp"
- android:orientation="horizontal"
- >
- <ImageButton
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/arrow"
- android:layout_gravity="center_vertical"
- android:paddingLeft="20dp"
- android:background="@null"/>
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center_vertical"
- android:padding="10dp"
- android:text="Account"
- android:textColor="@color/WHITE"
- />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/row2"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:layout_below="@+id/row1"
- android:orientation="horizontal"
- android:gravity="left"
- >
- <ImageView
- android:id="@+id/profileImg"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:src="@drawable/arrow"
- android:padding="10dp"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/row3"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:layout_below="@+id/row2"
- android:orientation="horizontal"
- android:gravity="left"
- >
- <TextView
- android:id="@+id/tipTV"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:text="User Name"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/row4"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:orientation="horizontal"
- android:gravity="left"
- android:layout_below="@+id/row3">
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:text="Order Details:"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- </LinearLayout>
- <LinearLayout
- android:id="@+id/row5"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="5dp"
- android:orientation="horizontal"
- android:gravity="left"
- android:layout_below="@+id/row4">
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.2"
- android:padding="10dp"
- android:text="Product"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.2"
- android:padding="10dp"
- android:text="Price"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.2"
- android:padding="10dp"
- android:text="Quantity"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.25"
- android:padding="10dp"
- android:text="Total Price"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- <TextView
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="0.1"
- android:padding="10dp"
- android:text=""
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- </LinearLayout>
- <TableLayout
- android:id="@+id/row6"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:layout_below="@+id/row5"
- android:gravity="center"
- android:layout_marginLeft="5dp"
- android:layout_marginRight="5dp"
- android:layout_marginTop="5dp">
- </TableLayout>
- <LinearLayout
- android:id="@+id/row7"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_margin="10dp"
- android:orientation="horizontal"
- android:gravity="right"
- android:layout_below="@+id/row6"
- android:layout_alignParentBottom="true">
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:text="Confirm"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- <Button
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:padding="10dp"
- android:text="Edit"
- android:textColor="@color/BLACK"
- android:textSize="15dp"
- />
- </LinearLayout>
- </RelativeLayout>
- </ScrollView>
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement