Skip to content

Instantly share code, notes, and snippets.

@VincentH-Net
Created October 24, 2013 12:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save VincentH-Net/7136456 to your computer and use it in GitHub Desktop.
Save VincentH-Net/7136456 to your computer and use it in GitHub Desktop.
OrderResult view markup for Android Cloud Auction example app, built with MvvmQuickCross
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/OrderResultView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:text="Congratulations!"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp" />
<ImageView
android:src="@drawable/Checkmark"
android:paddingTop="20dp"
android:paddingBottom="20dp"
android:layout_gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageView1" />
<TextView
android:text="Congratulations with your purchase: PANASONIC DMC-TZ25E*. You will receive an email with delivery or pickup details. Enyoy your Brand purchase!"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/OrderResultView_Message"
android:layout_weight="1"
android:paddingLeft="10dp"
android:paddingRight="10dp" />
<Button
android:text="Done"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/OrderResultView_DoneCommand"
android:layout_gravity="bottom" />
</LinearLayout>
</ScrollView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment