|
@@ -0,0 +1,637 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/background_color"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:scrollbars="none"
|
|
|
+ tools:ignore="UselessParent">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/in_board_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_in_board"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/domestic_expenses"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/in_board_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/international_travel_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:theme="@style/CheckBoxTheme"
|
|
|
+ android:visibility="invisible" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/total_international_travel_expenses"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding_small"
|
|
|
+ android:baselineAligned="false"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_economy_class"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/economy_class" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_business_class"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/business_class" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_first_class"
|
|
|
+ android:layout_width="30dp"
|
|
|
+ android:layout_height="30dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="@string/first_class" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/accommodation_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_accommodation_fee"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/accommodation_fee"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/accommodation_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/meal_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_meal_fee"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/meal_expenses"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/meal_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/public_and_miscellaneous_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_public_and_miscellaneous"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/public_and_miscellaneous_expenses"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/public_and_miscellaneous_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/training_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_training"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/training_fee"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/training_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/other_fee"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/check_other"
|
|
|
+ android:layout_width="50dp"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="@null"
|
|
|
+ android:clickable="false"
|
|
|
+ android:focusable="false"
|
|
|
+ android:theme="@style/CheckBoxTheme" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/other_fee"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/other_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="@dimen/common_padding_heavy"
|
|
|
+ android:layout_height="@dimen/common_padding_heavy"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:src="@mipmap/icon_forward"
|
|
|
+ tools:ignore="contentDescription" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:baselineAligned="false"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/airplane_price_detail"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/economy_class"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/business_class"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/first_class"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:background="@color/white"
|
|
|
+ android:baselineAligned="false"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ tools:ignore="UselessLeaf">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="@string/payment_total"
|
|
|
+ android:textSize="@dimen/text_size_large"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/economy_class_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/business_class_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/first_class_total"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="@dimen/common_padding"
|
|
|
+ android:textSize="@dimen/text_size_small"
|
|
|
+ android:textStyle="bold" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/line"
|
|
|
+ android:background="@color/line_color" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/export_to_collection_bill"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/shape_corner_solid_blue"
|
|
|
+ android:gravity="center"
|
|
|
+ android:padding="@dimen/common_padding"
|
|
|
+ android:text="@string/export_to_collection_bill"
|
|
|
+ android:textColor="@color/white" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/download_group_members_list"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="@dimen/common_padding"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="@drawable/shape_corner_solid_blue"
|
|
|
+ android:gravity="center"
|
|
|
+ android:padding="@dimen/common_padding"
|
|
|
+ android:text="@string/download_group_members_list"
|
|
|
+ android:textColor="@color/white" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|