Commit 3dc2631a authored by xuelimin's avatar xuelimin

分批3

parent 1ac0acf1
Pipeline #1094 canceled with stages
This diff is collapsed.
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/re_view_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/launcher_bg">
<androidx.appcompat.widget.Toolbar
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/tv_time"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_marginTop="25dp"
android:layout_marginRight="20dp"
android:background="@drawable/border_circle_timer"
android:gravity="center"
android:text="3s"
android:textColor="@android:color/white"
android:textSize="15sp" />
</RelativeLayout>
</androidx.appcompat.widget.Toolbar>
</RelativeLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTopLayoutTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="27dp"
android:layout_marginTop="20dp"
android:layout_marginRight="27dp"
android:text="@string/str_sign_in"
android:textColor="@android:color/black"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@+id/mLoginTopLayout" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/mBtnLogin"
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="27dp"
android:layout_marginTop="60dp"
android:layout_marginRight="21dp"
android:background="@drawable/login_btn_circle"
android:text="@string/login_login"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
android:textStyle="bold"
app:layout_constraintTop_toBottomOf="@+id/mRememberMeCB" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mCodeTv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="ver 1.0"
android:textColor="@android:color/black"
android:textSize="12sp"
app:layout_constraintBottom_toTopOf="@+id/text_view_bottom"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/text_view_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:gravity="center"
android:text="By signing in, creating an account, or checking out as a Guest, you are agreeing to our Terms of Use and our Privacy Policy"
android:textColor="@color/color_forgot_password"
android:textSize="11sp"
app:layout_constraintBottom_toBottomOf="parent" />
<androidx.appcompat.widget.AppCompatCheckBox
android:id="@+id/mRememberMeCB"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="10dp"
app:layout_constraintLeft_toLeftOf="@+id/mEditPassword"
app:layout_constraintTop_toBottomOf="@+id/mEditPassword" />
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/mEditUser"
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="27dp"
android:layout_marginTop="20dp"
android:layout_marginRight="27dp"
android:background="@drawable/login_edit_view_circle"
android:gravity="center|left"
android:hint="@string/login_tips_number"
android:paddingLeft="10dp"
android:textColor="@color/color_forgot_password"
android:textColorHint="@color/color_forgot_password"
android:textSize="@dimen/text_size"
app:layout_constraintLeft_toLeftOf="@+id/mTopLayoutTv"
app:layout_constraintRight_toRightOf="@+id/mTopLayoutTv"
app:layout_constraintTop_toBottomOf="@+id/mTopLayoutTv" />
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/mEditPassword"
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="27dp"
android:layout_marginTop="20dp"
android:layout_marginRight="27dp"
android:background="@drawable/login_edit_view_circle"
android:gravity="center|left"
android:hint="@string/login_tips_password"
android:inputType="textPassword"
android:paddingLeft="10dp"
android:textColor="@color/color_forgot_password"
android:textColorHint="@color/color_forgot_password"
android:textSize="@dimen/text_size"
app:layout_constraintLeft_toLeftOf="@+id/mEditUser"
app:layout_constraintRight_toRightOf="@+id/mEditUser"
app:layout_constraintTop_toBottomOf="@+id/mEditUser" />
<!-- android:text="Obasan2019"-->
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left|center"
android:text="@string/str_remember_me"
android:textColor="@color/color_forgot_password"
android:textSize="12sp"
app:layout_constraintBottom_toBottomOf="@+id/mRememberMeCB"
app:layout_constraintLeft_toRightOf="@+id/mRememberMeCB"
app:layout_constraintTop_toTopOf="@+id/mRememberMeCB" />
<!-- android:text="obasan@devel.homeboss.co.jp"-->
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvError"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:background="@android:color/transparent"
android:textColor="@android:color/holo_red_dark"
android:textSize="@dimen/text_size"
app:layout_constraintBottom_toTopOf="@+id/mEditUser"
app:layout_constraintLeft_toLeftOf="@+id/mEditUser"
app:layout_constraintRight_toRightOf="@+id/mEditUser" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvForgotPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:padding="10dp"
android:text="@string/login_forgot_password"
android:textColor="@color/color_forgot_password"
android:textSize="@dimen/text_size"
android:textStyle="bold"
app:layout_constraintRight_toRightOf="@+id/mEditPassword"
app:layout_constraintTop_toBottomOf="@+id/mEditPassword" />
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mLoginTopLayout"
android:layout_width="match_parent"
android:layout_height="100dp"
android:paddingTop="20dp"
android:background="@color/color_my_theme"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="80dp"
android:layout_height="60dp"
android:src="@drawable/logo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/login_top_bar_layout"
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="@color/color_my_theme"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mLoginNewPasswordBack"
android:layout_width="20dp"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginTop="20dp"
android:src="@drawable/back"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="@string/str_reset_password"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mLoginNewPasswordSave"
android:layout_width="20dp"
android:layout_height="20dp"
android:layout_marginTop="20dp"
android:layout_marginRight="16dp"
android:background="@android:color/transparent"
android:src="@drawable/save"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/mNewPassword"
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="@dimen/view_height"
android:layout_marginTop="70dp"
android:layout_marginRight="@dimen/view_height"
android:background="@drawable/change_password_edit_view_circle"
android:gravity="left|center"
android:hint="@string/str_new_password"
android:paddingLeft="20dp"
android:textColor="@android:color/black"
android:textColorHint="@color/edit_hint_color"
android:textSize="@dimen/text_size"
app:layout_constraintTop_toBottomOf="@+id/login_top_bar_layout" />
<androidx.appcompat.widget.AppCompatEditText
android:id="@+id/mConfirmNewPassword"
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="@dimen/view_height"
android:layout_marginTop="20dp"
android:layout_marginRight="@dimen/view_height"
android:background="@drawable/change_password_edit_view_circle"
android:gravity="left|center"
android:hint="@string/str_confirm_password"
android:paddingLeft="20dp"
android:textColor="@android:color/black"
android:textColorHint="@color/edit_hint_color"
android:textSize="@dimen/text_size"
app:layout_constraintTop_toBottomOf="@+id/mNewPassword" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mLoginNewPasswordError"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:background="@android:color/transparent"
android:gravity="center"
android:textColor="@android:color/holo_red_dark"
android:textSize="@dimen/text_size"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/mConfirmNewPassword" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/profile_top_bar_layout"
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="@color/color_my_theme"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mProfileBack"
android:layout_width="20dp"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginTop="20dp"
android:src="@drawable/back"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="@string/str_profile_setting"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mCiUserAvatarLayout"
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="@android:color/white"
app:layout_constraintTop_toBottomOf="@+id/profile_top_bar_layout">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mEditUserAvatar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_marginBottom="20dp"
android:src="@drawable/edit_2"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/mCiUserAvatar" />
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/mCiUserAvatar"
android:layout_width="70dp"
android:layout_height="70dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mUserInfoLayout"
android:layout_width="match_parent"
android:layout_height="150dp"
android:background="#00D6D8"
android:paddingLeft="30dp"
android:paddingRight="30dp"
app:layout_constraintTop_toBottomOf="@+id/mCiUserAvatarLayout">
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mBtnEditProfile"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/edit_1"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvProfileUserName"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_marginTop="30dp"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvProfileUserLastName"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="@+id/mTvProfileUserName"
app:layout_constraintTop_toBottomOf="@+id/mTvProfileUserName" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvProfileUserMobilePhone"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:textColor="@android:color/white"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintLeft_toLeftOf="@+id/mTvProfileUserLastName"
app:layout_constraintTop_toBottomOf="@+id/mTvProfileUserLastName" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mHourglassImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:src="@drawable/hourglass"
app:layout_constraintLeft_toLeftOf="@+id/mTvProfileUserMobilePhone"
app:layout_constraintTop_toBottomOf="@+id/mTvProfileUserMobilePhone" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvProfileMail"
android:layout_width="wrap_content"
android:layout_height="25dp"
android:layout_marginLeft="10dp"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
app:layout_constraintLeft_toRightOf="@+id/mHourglassImage"
app:layout_constraintTop_toTopOf="@+id/mHourglassImage" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/mUserPasswordInfoLayout"
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginTop="30dp"
android:background="#50C0C0C2"
app:layout_constraintTop_toBottomOf="@+id/mUserInfoLayout">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="30dp"
android:layout_marginRight="30dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="10dp"
android:layout_height="10dp"
android:src="@drawable/right_arrow"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/mIvProfileUserPassword"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/lock"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="30dp"
android:text="@string/str_change_password"
android:textColor="@color/color_forgot_password"
android:textSize="@dimen/text_size"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/mIvProfileUserPassword"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent">
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@+id/mScrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="70dp"
app:layout_constraintTop_toBottomOf="@+id/terms_content_top_bar_layout">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mContentTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:background="@android:color/transparent"
android:lineSpacingExtra="5dp"
android:textColor="@android:color/black"
android:textSize="@dimen/pending_text_size"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTipsTv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="16dp"
android:background="@android:color/transparent"
android:lineSpacingExtra="5dp"
android:textColor="@android:color/black"
android:textSize="18sp"
app:layout_constraintTop_toBottomOf="@+id/view_view" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/view_view"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="6dp"
android:background="@android:color/black"
app:layout_constraintTop_toBottomOf="@+id/mContentTv" />
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="56dp"
android:layout_marginTop="16dp"
android:layout_marginRight="56dp"
android:layout_marginBottom="16dp"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/mTipsTv">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/mAgreeBtn"
android:layout_width="0dp"
android:layout_height="@dimen/view_height"
android:layout_marginRight="11dp"
android:layout_weight="1"
android:background="@drawable/terms_content_agree_btn_bg"
android:text="@string/str_agree"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/mDisagreeBtn"
android:layout_width="0dp"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="11dp"
android:layout_weight="1"
android:background="@drawable/terms_content_disagree_btn_bg"
android:text="@string/str_disagree"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
android:textStyle="bold" />
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/terms_content_top_bar_layout"
android:layout_width="match_parent"
android:layout_height="70dp"
android:background="@color/color_my_theme"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTvTitle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="@string/str_terms_and_condition"
android:textColor="@android:color/white"
android:textSize="@dimen/text_size"
android:textStyle="bold"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@drawable/card_view_circle"
android:orientation="vertical">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="30dp"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/time_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Job Type"
android:textColor="@android:color/black"
android:textSize="14sp"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/time_top_save"
android:layout_width="50dp"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:text="@string/str_save_changes"
android:textColor="@android:color/black"
android:textSize="14sp"
app:layout_constraintRight_toRightOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="30dp"
android:orientation="horizontal">
<com.rudian.library.ui.loopview.LoopView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="2"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="20dp"
android:layout_height="match_parent"
android:gravity="center"
android:text="年"
android:textColor="@android:color/black"
android:textStyle="bold" />
<com.rudian.library.ui.loopview.LoopView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="20dp"
android:layout_height="match_parent"
android:gravity="center"
android:text="月"
android:textColor="@android:color/black"
android:textStyle="bold" />
<com.rudian.library.ui.loopview.LoopView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="20dp"
android:layout_height="match_parent"
android:gravity="center"
android:text="日"
android:textColor="@android:color/black"
android:textStyle="bold" />
<com.rudian.library.ui.loopview.LoopView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="20dp"
android:layout_height="match_parent"
android:gravity="center"
android:text="时"
android:textColor="@android:color/black"
android:textStyle="bold" />
<com.rudian.library.ui.loopview.LoopView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="20dp"
android:layout_height="match_parent"
android:gravity="center"
android:text="分"
android:textColor="@android:color/black"
android:textStyle="bold" />
<com.rudian.library.ui.loopview.LoopView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@drawable/card_view_circle">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="30dp"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/loop_view_top_title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:text="Job Type"
android:textColor="@android:color/black"
android:textSize="14sp"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/loop_view_top_save"
android:layout_width="50dp"
android:layout_height="match_parent"
android:background="@android:color/transparent"
android:text="@string/str_save_changes"
android:textColor="@android:color/black"
android:textSize="14sp"
app:layout_constraintRight_toRightOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<com.rudian.library.ui.loopview.LoopView
android:id="@+id/loop_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="30dp"
app:awv_centerTextColor="@color/color_my_theme"
app:awv_dividerTextColor="@android:color/black"
app:awv_isLoop="false"
app:awv_textsize="18" />
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="250dp"
android:layout_marginLeft="50dp"
android:layout_marginRight="50dp"
android:background="@drawable/card_view_circle"
android:orientation="vertical">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/title_tips"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2"
android:gravity="center|left"
android:paddingLeft="15dp"
android:paddingRight="15dp"
android:text="@string/str_job_info_cancel_tips"
android:textColor="@color/color_my_theme"
android:textSize="16sp" />
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal">
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/no_btn"
android:layout_width="80dp"
android:layout_height="40dp"
android:layout_marginRight="10dp"
android:background="@drawable/job_info_on_hold_btn_bg"
android:gravity="center"
android:text="No"
android:textColor="@android:color/black"
android:textSize="14sp" />
<androidx.appcompat.widget.AppCompatButton
android:id="@+id/yes_btn"
android:layout_width="80dp"
android:layout_height="40dp"
android:layout_marginLeft="10dp"
android:background="@drawable/job_info_cancel_btn_bg"
android:gravity="center"
android:text="Yes"
android:textColor="@android:color/white"
android:textSize="14sp" />
</androidx.appcompat.widget.LinearLayoutCompat>
</androidx.appcompat.widget.LinearLayoutCompat>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- <android.support.v4.widget.SwipeRefreshLayout-->
<!-- android:id="@+id/mRefreshLayout"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent">-->
<!-- <android.support.v7.widget.RecyclerView-->
<!-- android:id="@+id/mContentRV"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent"-->
<!-- android:clipChildren="false" />-->
<!-- </android.support.v4.widget.SwipeRefreshLayout>-->
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- <android.support.v4.widget.SwipeRefreshLayout-->
<!-- android:id="@+id/mRefreshLayout"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent">-->
<!-- <android.support.v7.widget.RecyclerView-->
<!-- android:id="@+id/mContentRV"-->
<!-- android:layout_width="match_parent"-->
<!-- android:layout_height="match_parent"-->
<!-- android:clipChildren="false" />-->
<!-- </android.support.v4.widget.SwipeRefreshLayout>-->
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.swiperefreshlayout.widget.SwipeRefreshLayout
android:id="@+id/mRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/mContentRV"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipChildren="false" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
</androidx.constraintlayout.widget.ConstraintLayout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="180dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="20dp"
android:layout_marginRight="10dp"
android:layout_marginBottom="20dp"
app:cardBackgroundColor="@android:color/white"
app:cardCornerRadius="10dp"
app:cardElevation="10dp">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:visibility="visible"
android:layout_height="match_parent">
<View
android:id="@+id/vertical_view"
android:layout_width="1dp"
android:layout_height="90dp"
android:layout_marginLeft="15dp"
android:background="@android:color/black"
app:layout_constraintBottom_toTopOf="@+id/content_view"
app:layout_constraintLeft_toRightOf="@+id/mDataLayout"
app:layout_constraintTop_toTopOf="parent" />
<View
android:id="@+id/content_view"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginTop="10dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="match_parent"
android:layout_height="90dp"
android:layout_marginLeft="100dp"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/content_view"
app:layout_constraintLeft_toLeftOf="@+id/vertical_view"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mPropertyName"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="13dp"
android:layout_weight="1"
android:gravity="center|left"
android:text="Hanazono"
android:textColor="#A1A2A4"
android:textSize="18sp"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mPropertyAddress"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="13dp"
android:layout_weight="1.2"
android:gravity="center|left"
android:text="北海道 俱知安町虻田郡(字)305番44"
android:textColor="#616367"
android:textSize="@dimen/pending_text_size"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mJobType"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginLeft="13dp"
android:layout_weight="1"
android:gravity="center|left"
android:text="cleaning"
android:textColor="#F64932"
android:textSize="18sp"
android:textStyle="bold" />
</androidx.appcompat.widget.LinearLayoutCompat>
<androidx.appcompat.widget.LinearLayoutCompat
android:id="@+id/mDataLayout"
android:layout_width="65dp"
android:layout_height="90dp"
android:layout_marginLeft="15dp"
android:orientation="vertical"
app:layout_constraintBottom_toTopOf="@+id/content_view"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toTopOf="parent">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mWeekTv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:text="Thu"
android:textColor="@color/edit_hint_color"
android:textSize="@dimen/pending_text_size"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mDayTv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:text="08"
android:textColor="#616367"
android:textSize="18sp"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/monthTv"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:text="Aug"
android:textColor="#FF9F9F"
android:textSize="@dimen/text_size"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mTime"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:gravity="center"
android:text="12:00 PM"
android:textColor="#616367"
android:textSize="@dimen/pending_text_size" />
</androidx.appcompat.widget.LinearLayoutCompat>
<androidx.appcompat.widget.LinearLayoutCompat
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:gravity="center"
android:orientation="vertical"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toRightOf="@+id/mCiUserAvatar"
app:layout_constraintTop_toBottomOf="@+id/content_view">
<androidx.appcompat.widget.AppCompatTextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:gravity="center|left"
android:text="Peace of Mind Property Management"
android:textColor="#616367"
android:textSize="@dimen/pending_text_size"
android:textStyle="bold" />
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/mShortName"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dp"
android:gravity="center|left"
android:text="Ryu SAKAMOTO"
android:textColor="#FF9F9F"
android:textSize="@dimen/pending_text_size" />
</androidx.appcompat.widget.LinearLayoutCompat>
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/mCiUserAvatar"
android:layout_width="@dimen/view_height"
android:layout_height="@dimen/view_height"
android:layout_marginLeft="20dp"
android:src="@drawable/circle_avatar"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="@+id/content_view" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView>
\ No newline at end of file
This diff is collapsed.
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@color/ic_launcher_background"/>
<foreground android:drawable="@mipmap/ic_launcher_foreground"/>
</adaptive-icon>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment