| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout 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"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical">
- <View
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/translate33"/>
- <LinearLayout
- android:id="@+id/pop_layout"
- android:layout_width="fill_parent"
- android:layout_height="486dp"
- android:layout_alignParentBottom="true"
- android:background="@drawable/shape_white_top_8dp_line_9e9e9e"
- android:gravity="center_horizontal"
- android:orientation="vertical"
- android:padding="16dp"
- tools:ignore="MissingConstraints">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <com.yihucha.hbyhc.view.BoldText
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerHorizontal="true"
- android:text="@string/order_phonographic"
- android:textColor="@color/black_333333"
- android:textSize="18sp" />
- <ImageView
- android:id="@+id/iv_guanbi"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true"
- android:layout_marginLeft="5dp"
- android:src="@mipmap/note_to_close" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="160dp"
- android:background="@drawable/shape_f8f8f8_8dp"
- android:orientation="vertical">
- <EditText
- android:id="@+id/et_remark"
- android:layout_width="match_parent"
- android:layout_height="130dp"
- android:gravity="start"
- android:padding="13dp"
- android:maxLength="200"
- android:hint="选填,建议留言前先与商家沟通确认"
- android:textSize="15sp"
- android:textColorHint="@color/gray_999999"
- android:background="@null" />
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <View
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1" />
- <TextView
- android:id="@+id/tv_et_num"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="0"
- android:textColor="@color/gray_999999"
- android:textSize="15sp" />
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="/200"
- android:textColor="@color/black_333333"
- android:textSize="15sp" />
- </LinearLayout>
- </LinearLayout>
- <View
- android:layout_width="wrap_content"
- android:layout_height="0dp"
- android:layout_weight="1"></View>
- <TextView
- android:id="@+id/tv_buy_now"
- android:layout_width="match_parent"
- android:layout_height="44dp"
- android:background="@drawable/shape_fe0032_50dp"
- android:gravity="center"
- android:text="@string/confirm"
- android:textColor="@color/white"
- android:textSize="16sp" />
- </LinearLayout>
- </RelativeLayout>
|