product list on order history details

This commit is contained in:
cimenmus
2018-01-17 23:01:51 +03:00
parent 934ff298d5
commit 34bb2e10f3
13 changed files with 411 additions and 8 deletions

View File

@@ -3,6 +3,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:ignore="MissingPrefix"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
@@ -82,6 +83,29 @@
android:layout_height="wrap_content"
app:description="@string/order_history_order_payment_method" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="16dp">
<TextView
fontPath="fonts/Quicksand-Bold.ttf"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/order_products"
android:textColor="@color/navy"
android:textSize="12sp" />
<TextView
android:id="@+id/orderProductsTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:textColor="@color/red" />
</LinearLayout>
<ch.pizzalink.android.view.PizzalinkInfoView
android:id="@+id/orderFullnamePizzalinkInfoLayout"
android:layout_width="match_parent"

View File

@@ -108,6 +108,7 @@
<string name="order_history_order_shipping_time">VERSANDZEIT</string>    
<string name="order_history_order_total">ZWISHENSUMME</string>    
<string name="order_history_order_payment_method">ZAHLUNGSWEISE</string>    
<string name="order_products">PRODUCTS</string>    
<string name="order_history_order_fullname">VOLLNAME</string>    
<string name="order_history_order_shipping_method">LIEFERUNGSMETHODE</string>    
<string name="order_history_order_shipping_address">LIEFERUNGSADRESSE</string>