asana fixes
This commit is contained in:
BIN
.idea/caches/build_file_checksums.ser
generated
BIN
.idea/caches/build_file_checksums.ser
generated
Binary file not shown.
@@ -162,7 +162,7 @@ public class MainActivity extends BaseActivity {
|
|||||||
bottomNavigationView.setCurrentItem(1);
|
bottomNavigationView.setCurrentItem(1);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
openProductsScreen(categoryList.get(2));
|
openProductsScreen(categoryList.get(3));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
private void initBottomNavigationView(){
|
private void initBottomNavigationView(){
|
||||||
|
|||||||
@@ -158,6 +158,13 @@ public class PaymentMethodFragment extends CreateOrderBaseFragment {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for(PaymentMethodModel paymentMethodModel : paymentMethodModels){
|
||||||
|
if(paymentMethodModel.getPaymentMethodType() == PaymentMethodModel.PaymentMethodType.TWINT){
|
||||||
|
paymentMethodModels.remove(paymentMethodModel);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// dummy //
|
// dummy //
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ public class AppButton extends LinearLayout {
|
|||||||
|
|
||||||
private void setButtonAppearance(Context context){
|
private void setButtonAppearance(Context context){
|
||||||
if(isEnabled){
|
if(isEnabled){
|
||||||
pizzalinkButton.setBackground(ContextCompat.getDrawable(context, R.drawable.background_button_enabled));
|
pizzalinkButton.setBackground(ContextCompat.getDrawable(context, R.drawable.background_button_enabled_red));
|
||||||
pizzalinkButton.setTextColor(ContextCompat.getColor(context, R.color.colorPrimary));
|
pizzalinkButton.setTextColor(ContextCompat.getColor(context, R.color.colorPrimary));
|
||||||
}else {
|
}else {
|
||||||
pizzalinkButton.setBackground(ContextCompat.getDrawable(context, R.drawable.background_button_disabled));
|
pizzalinkButton.setBackground(ContextCompat.getDrawable(context, R.drawable.background_button_disabled));
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ public class AppEditText extends LinearLayout implements View.OnClickListener {
|
|||||||
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.AppEditText, 0, 0);
|
TypedArray a = context.getTheme().obtainStyledAttributes(attrs, R.styleable.AppEditText, 0, 0);
|
||||||
try {
|
try {
|
||||||
hint = a.getString(R.styleable.AppEditText_hint);
|
hint = a.getString(R.styleable.AppEditText_hint);
|
||||||
characterCount = a.getInt(R.styleable.AppEditText_characterCount, 5-1);
|
characterCount = a.getInt(R.styleable.AppEditText_characterCount, -1);
|
||||||
inputType = a.getString(R.styleable.AppEditText_inputType);
|
inputType = a.getString(R.styleable.AppEditText_inputType);
|
||||||
edittextTheme = a.getString(R.styleable.AppEditText_edittextTheme);
|
edittextTheme = a.getString(R.styleable.AppEditText_edittextTheme);
|
||||||
} finally {
|
} finally {
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<solid android:color="@color/white"/>
|
||||||
|
<stroke
|
||||||
|
android:color="@color/main_black"
|
||||||
|
android:width="1dp"/>
|
||||||
|
<corners android:radius="1dp"/>
|
||||||
|
</shape>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<shape
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<solid android:color="@color/main_black"/>
|
||||||
|
<corners android:radius="8dp"/>
|
||||||
|
|
||||||
|
</shape>
|
||||||
@@ -109,7 +109,7 @@
|
|||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:text="@string/add"
|
android:text="@string/add"
|
||||||
android:layout_alignParentBottom="true" />
|
android:layout_alignParentBottom="true" />
|
||||||
|
|
||||||
|
|||||||
@@ -117,7 +117,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:text="@string/add_to_cart"
|
android:text="@string/add_to_cart"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:layout_marginTop="12dp"
|
android:layout_marginTop="12dp"
|
||||||
android:layout_marginBottom="12dp"/>
|
android:layout_marginBottom="12dp"/>
|
||||||
|
|
||||||
|
|||||||
@@ -55,6 +55,8 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="16dp"
|
android:layout_margin="16dp"
|
||||||
|
app:stpi_indicatorColor="@color/red"
|
||||||
|
app:stpi_lineDoneColor="@color/red"
|
||||||
app:stpi_labels="@array/stepperLabels" />
|
app:stpi_labels="@array/stepperLabels" />
|
||||||
|
|
||||||
<View
|
<View
|
||||||
|
|||||||
@@ -58,7 +58,7 @@
|
|||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/resetPasswordButton"
|
android:id="@+id/resetPasswordButton"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
|
|||||||
@@ -67,7 +67,7 @@
|
|||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/loginButton"
|
android:id="@+id/loginButton"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
@@ -84,7 +84,7 @@
|
|||||||
|
|
||||||
<Button
|
<Button
|
||||||
android:id="@+id/registerButton"
|
android:id="@+id/registerButton"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
|
|||||||
@@ -51,7 +51,7 @@
|
|||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:text="@string/add_new_address"
|
android:text="@string/add_new_address"
|
||||||
android:layout_alignParentBottom="true"/>
|
android:layout_alignParentBottom="true"/>
|
||||||
|
|
||||||
|
|||||||
@@ -116,7 +116,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:text="@string/add_to_cart"
|
android:text="@string/add_to_cart"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:layout_marginTop="12dp"
|
android:layout_marginTop="12dp"
|
||||||
android:layout_marginBottom="12dp"/>
|
android:layout_marginBottom="12dp"/>
|
||||||
|
|
||||||
|
|||||||
@@ -131,7 +131,7 @@
|
|||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:text="@string/button_register"
|
android:text="@string/button_register"
|
||||||
android:layout_alignParentBottom="true" />
|
android:layout_alignParentBottom="true" />
|
||||||
|
|
||||||
|
|||||||
@@ -76,7 +76,7 @@
|
|||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:text="@string/update_app" />
|
android:text="@string/update_app" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
@@ -87,7 +87,7 @@
|
|||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:text="@string/update_app"
|
android:text="@string/update_app"
|
||||||
android:layout_alignParentBottom="true" />
|
android:layout_alignParentBottom="true" />
|
||||||
|
|
||||||
|
|||||||
@@ -93,7 +93,7 @@
|
|||||||
android:layout_marginRight="6dp"
|
android:layout_marginRight="6dp"
|
||||||
android:layout_marginEnd="6dp"
|
android:layout_marginEnd="6dp"
|
||||||
android:text="@string/clear_cart"
|
android:text="@string/clear_cart"
|
||||||
style="@style/PizzalinkRedWithoutMargin"
|
style="@style/PizzappGrayButtonWithoutMargin"
|
||||||
android:layout_weight="1"/>
|
android:layout_weight="1"/>
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
@@ -104,7 +104,7 @@
|
|||||||
android:layout_marginLeft="6dp"
|
android:layout_marginLeft="6dp"
|
||||||
android:layout_marginStart="6dp"
|
android:layout_marginStart="6dp"
|
||||||
android:text="@string/continue_cart"
|
android:text="@string/continue_cart"
|
||||||
style="@style/PizzalinkRedWithoutMargin"
|
style="@style/PizzappGrayButtonWithoutMargin"
|
||||||
android:layout_weight="1"/>
|
android:layout_weight="1"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|||||||
@@ -19,7 +19,7 @@
|
|||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:layout_marginBottom="16dp"
|
android:layout_marginBottom="16dp"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:text="@string/add_new_address"
|
android:text="@string/add_new_address"
|
||||||
android:layout_above="@+id/ordersBottomLayout"/>
|
android:layout_above="@+id/ordersBottomLayout"/>
|
||||||
|
|
||||||
|
|||||||
@@ -61,7 +61,6 @@
|
|||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
android:padding="12sp"
|
android:padding="12sp"
|
||||||
android:text="Pizza Formaggio"
|
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:layout_gravity="center"
|
android:layout_gravity="center"
|
||||||
android:gravity="center" />
|
android:gravity="center" />
|
||||||
@@ -71,7 +70,6 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/red"
|
android:textColor="@color/red"
|
||||||
android:text="CHF 25.00"
|
|
||||||
android:textSize="18sp"
|
android:textSize="18sp"
|
||||||
android:paddingBottom="12dp"
|
android:paddingBottom="12dp"
|
||||||
android:paddingLeft="12dp"
|
android:paddingLeft="12dp"
|
||||||
@@ -91,7 +89,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="48dp"
|
android:layout_height="48dp"
|
||||||
android:text="@string/add_to_cart"
|
android:text="@string/add_to_cart"
|
||||||
style="@style/PizzalinkRedButton"
|
style="@style/PizzappGrayButton"
|
||||||
android:layout_marginTop="12dp"
|
android:layout_marginTop="12dp"
|
||||||
android:layout_marginBottom="12dp"/>
|
android:layout_marginBottom="12dp"/>
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,6 @@
|
|||||||
android:layout_marginRight="24dp"
|
android:layout_marginRight="24dp"
|
||||||
android:layout_marginEnd="24dp"
|
android:layout_marginEnd="24dp"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:background="@drawable/background_button_enabled"/>
|
android:background="@drawable/background_button_enabled_red"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@@ -12,7 +12,6 @@
|
|||||||
android:id="@+id/descriptionTextView"
|
android:id="@+id/descriptionTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="@string/order_person_fullname"
|
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="12sp"
|
android:textSize="12sp"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf" />
|
fontPath="fonts/Quicksand-Bold.ttf" />
|
||||||
@@ -23,7 +22,6 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_marginTop="4dp"
|
android:layout_marginTop="4dp"
|
||||||
android:text="Aytaç Cici"
|
|
||||||
android:textColor="@color/red" />
|
android:textColor="@color/red" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@@ -31,7 +31,6 @@
|
|||||||
android:id="@+id/cartProductCountTextView"
|
android:id="@+id/cartProductCountTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="2 x "
|
|
||||||
android:textColor="@color/black" />
|
android:textColor="@color/black" />
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@@ -67,7 +66,6 @@
|
|||||||
android:id="@+id/cartProductNameTextView"
|
android:id="@+id/cartProductNameTextView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Pizza Formaggio"
|
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:padding="12dp"
|
android:padding="12dp"
|
||||||
@@ -81,7 +79,6 @@
|
|||||||
android:id="@+id/cartProductTotalPriceTextView"
|
android:id="@+id/cartProductTotalPriceTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="CHF 25.00"
|
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:padding="8dp"
|
android:padding="8dp"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
@@ -95,7 +92,6 @@
|
|||||||
android:id="@+id/cartProductInfoTextView"
|
android:id="@+id/cartProductInfoTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Gross"
|
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:layout_marginLeft="32dp"
|
android:layout_marginLeft="32dp"
|
||||||
android:layout_marginStart="32dp"
|
android:layout_marginStart="32dp"
|
||||||
|
|||||||
@@ -20,7 +20,6 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:textSize="16sp"
|
android:textSize="16sp"
|
||||||
android:text="Anatoliajefjefje\nwhufjechfuhefu"
|
|
||||||
android:padding="8dp"
|
android:padding="8dp"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:layout_centerInParent="true"
|
android:layout_centerInParent="true"
|
||||||
@@ -61,10 +60,10 @@
|
|||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
android:background="@color/row_product_ingredients_background"
|
android:background="@color/row_product_ingredients_background"
|
||||||
android:padding="8dp"
|
android:padding="8dp"
|
||||||
|
android:textSize="12sp"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:layout_centerInParent="true"
|
android:layout_centerInParent="true" />
|
||||||
android:text="Mozzarella, Artischocken, Pilze, Peperoni, Oliven, Oregano"/>
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
@@ -78,7 +77,6 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:textColor="@color/white"
|
android:textColor="@color/white"
|
||||||
android:text="CHF 25.00"
|
|
||||||
android:padding="17dp"
|
android:padding="17dp"
|
||||||
android:gravity="center_horizontal"
|
android:gravity="center_horizontal"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
|
|||||||
@@ -25,7 +25,6 @@
|
|||||||
android:layout_toLeftOf="@+id/deleteAddressImageView"
|
android:layout_toLeftOf="@+id/deleteAddressImageView"
|
||||||
android:layout_toStartOf="@+id/deleteAddressImageView"
|
android:layout_toStartOf="@+id/deleteAddressImageView"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:text="Test Address"
|
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black" />
|
android:textColor="@color/black" />
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,6 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:text="Klein"
|
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"/>
|
fontPath="fonts/Quicksand-Bold.ttf"/>
|
||||||
|
|
||||||
@@ -30,8 +29,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black" />
|
||||||
android:text="CHF 14.00"/>
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
|||||||
@@ -13,7 +13,6 @@
|
|||||||
android:id="@+id/productOptionRadioButton"
|
android:id="@+id/productOptionRadioButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Klein"
|
|
||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"/>
|
fontPath="fonts/Quicksand-Bold.ttf"/>
|
||||||
@@ -30,8 +29,7 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black" />
|
||||||
android:text="CHF 14.00"/>
|
|
||||||
|
|
||||||
</RelativeLayout>
|
</RelativeLayout>
|
||||||
|
|
||||||
|
|||||||
@@ -24,7 +24,6 @@
|
|||||||
android:id="@+id/orderDateTextView"
|
android:id="@+id/orderDateTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="5 Oct. 2017"
|
|
||||||
android:textColor="@color/red"
|
android:textColor="@color/red"
|
||||||
android:padding="8dp"
|
android:padding="8dp"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
@@ -42,7 +41,6 @@
|
|||||||
android:id="@+id/orderTotalTextView"
|
android:id="@+id/orderTotalTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="CHF 25.00"
|
|
||||||
android:textColor="@color/black"
|
android:textColor="@color/black"
|
||||||
android:layout_marginLeft="32dp"
|
android:layout_marginLeft="32dp"
|
||||||
android:layout_marginStart="32dp"
|
android:layout_marginStart="32dp"
|
||||||
|
|||||||
@@ -13,7 +13,6 @@
|
|||||||
android:id="@+id/paymentMethodRadioButton"
|
android:id="@+id/paymentMethodRadioButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Gel ad"
|
|
||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black"/>
|
android:textColor="@color/black"/>
|
||||||
|
|||||||
@@ -13,7 +13,6 @@
|
|||||||
android:id="@+id/shipmentAddressRadioButton"
|
android:id="@+id/shipmentAddressRadioButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Gel ad"
|
|
||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black"/>
|
android:textColor="@color/black"/>
|
||||||
|
|||||||
@@ -13,7 +13,6 @@
|
|||||||
android:id="@+id/shipmentMethodRadioButton"
|
android:id="@+id/shipmentMethodRadioButton"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Gel ad"
|
|
||||||
android:clickable="false"
|
android:clickable="false"
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black"/>
|
android:textColor="@color/black"/>
|
||||||
@@ -29,7 +28,6 @@
|
|||||||
android:id="@+id/shipmentMethodPriceTextView"
|
android:id="@+id/shipmentMethodPriceTextView"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="CHF 14.00"
|
|
||||||
fontPath="fonts/Quicksand-Bold.ttf"
|
fontPath="fonts/Quicksand-Bold.ttf"
|
||||||
android:textColor="@color/black"/>
|
android:textColor="@color/black"/>
|
||||||
|
|
||||||
|
|||||||
@@ -135,7 +135,7 @@
|
|||||||
<string name="done_order">FERTIG</string>
|
<string name="done_order">FERTIG</string>
|
||||||
<string-array name="stepperLabels">
|
<string-array name="stepperLabels">
|
||||||
<item>Lieferungsart</item>
|
<item>Lieferungsart</item>
|
||||||
<item>Lieferungadresse</item>
|
<item>Lieferungsadresse</item>
|
||||||
<item>Bezahlverfahren</item>
|
<item>Bezahlverfahren</item>
|
||||||
<item>Nachricht</item>
|
<item>Nachricht</item>
|
||||||
<item>Betrag</item>
|
<item>Betrag</item>
|
||||||
|
|||||||
@@ -3,8 +3,8 @@
|
|||||||
<!-- Base application theme. -->
|
<!-- Base application theme. -->
|
||||||
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
|
||||||
<!-- Customize your theme here. -->
|
<!-- Customize your theme here. -->
|
||||||
<item name="colorPrimary">@color/colorPrimary</item>
|
<item name="colorPrimary">@color/main_black</item>
|
||||||
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
<item name="colorPrimaryDark">@color/main_black</item>
|
||||||
<item name="colorAccent">@color/colorAccent</item>
|
<item name="colorAccent">@color/colorAccent</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
@@ -21,8 +21,9 @@
|
|||||||
<item name="android:textAllCaps">false</item>
|
<item name="android:textAllCaps">false</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<!--
|
||||||
<style name="PizzalinkButtonWithoutMargin">
|
<style name="PizzalinkButtonWithoutMargin">
|
||||||
<item name="android:background">@drawable/background_button_enabled</item>
|
<item name="android:background">@drawable/background_button_enabled_red</item>
|
||||||
<item name="android:textColor">@color/red</item>
|
<item name="android:textColor">@color/red</item>
|
||||||
<item name="android:textSize">12sp</item>
|
<item name="android:textSize">12sp</item>
|
||||||
<item name="android:textAllCaps">false</item>
|
<item name="android:textAllCaps">false</item>
|
||||||
@@ -39,7 +40,8 @@
|
|||||||
<item name="android:textAllCaps">false</item>
|
<item name="android:textAllCaps">false</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="PizzalinkRedWithoutMargin">
|
|
||||||
|
<style name="PizzalinkRedButtonWithoutMargin">
|
||||||
<item name="android:background">@drawable/background_button_pizzalink_red</item>
|
<item name="android:background">@drawable/background_button_pizzalink_red</item>
|
||||||
<item name="android:textColor">@color/white</item>
|
<item name="android:textColor">@color/white</item>
|
||||||
<item name="android:textSize">12sp</item>
|
<item name="android:textSize">12sp</item>
|
||||||
@@ -56,5 +58,32 @@
|
|||||||
<item name="android:textSize">12sp</item>
|
<item name="android:textSize">12sp</item>
|
||||||
<item name="android:textAllCaps">false</item>
|
<item name="android:textAllCaps">false</item>
|
||||||
</style>
|
</style>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<style name="PizzappButtonWithoutMargin">
|
||||||
|
<item name="android:background">@drawable/background_button_enabled_gray</item>
|
||||||
|
<item name="android:textColor">@color/main_black</item>
|
||||||
|
<item name="android:textSize">12sp</item>
|
||||||
|
<item name="android:textAllCaps">false</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="PizzappGrayButtonWithoutMargin">
|
||||||
|
<item name="android:background">@drawable/background_button_pizzapp_gray</item>
|
||||||
|
<item name="android:textColor">@color/white</item>
|
||||||
|
<item name="android:textSize">12sp</item>
|
||||||
|
<item name="android:textAllCaps">false</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
|
||||||
|
<style name="PizzappGrayButton" parent="PizzappButtonWithoutMargin">
|
||||||
|
<item name="android:background">@drawable/background_button_pizzapp_gray</item>
|
||||||
|
<item name="android:textColor">@color/white</item>
|
||||||
|
<item name="android:layout_marginLeft">24dp</item>
|
||||||
|
<item name="android:layout_marginStart">24dp</item>
|
||||||
|
<item name="android:layout_marginRight">24dp</item>
|
||||||
|
<item name="android:layout_marginEnd">24dp</item>
|
||||||
|
<item name="android:textSize">12sp</item>
|
||||||
|
<item name="android:textAllCaps">false</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
Reference in New Issue
Block a user