Commit 18cb65c7 authored by 陈前's avatar 陈前

Merge remote-tracking branch 'origin/master'

parents fcbd1869 8e577dfe
...@@ -481,6 +481,15 @@ public class C { ...@@ -481,6 +481,15 @@ public class C {
public static final int VIP = 6; public static final int VIP = 6;
} }
public final class DIS_TYPE {
//打折
public static final int DIS = 1;
//促销
public static final int PROMOTION = 2;
//满减
public static final int MONEY_OFF = 4;
}
public final class MS_GROUP {//MS_TOUCH_TAG_2 public final class MS_GROUP {//MS_TOUCH_TAG_2
//全部 //全部
public static final int ALL = 1; public static final int ALL = 1;
......
...@@ -9,7 +9,6 @@ import com.chad.library.adapter.base.entity.SectionEntity; ...@@ -9,7 +9,6 @@ import com.chad.library.adapter.base.entity.SectionEntity;
import com.xingdata.api.print.entity.BaseGoodPrint; import com.xingdata.api.print.entity.BaseGoodPrint;
import com.xingdata.api.print.entity.BaseOrderPrint; import com.xingdata.api.print.entity.BaseOrderPrint;
import com.xingdata.zzdpos.C; import com.xingdata.zzdpos.C;
import com.xingdata.zzdpos.R;
import com.xingdata.zzdpos.base.BaseBean; import com.xingdata.zzdpos.base.BaseBean;
import com.xingdata.zzdpos.base.BaseModel; import com.xingdata.zzdpos.base.BaseModel;
import com.xingdata.zzdpos.util.ConvertUtil; import com.xingdata.zzdpos.util.ConvertUtil;
...@@ -939,45 +938,6 @@ public class Saleorder extends SectionEntity<MediaStore.Video> implements BaseMo ...@@ -939,45 +938,6 @@ public class Saleorder extends SectionEntity<MediaStore.Video> implements BaseMo
return saleorder; return saleorder;
} }
public List<PreferentialProject> getPreferentialProject() {
List<PreferentialProject> preferentialProjects = new ArrayList<>();
if (this.vipOffAmt > 0) {
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_zhe, this.vipOffAmt));
}
if (this.ticketAmt > 0) {
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_quan, this.ticketAmt));
}
if (this.boundNum > 0) {
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_ji, this.boundNum));
}
if (this.cutAmt > 0) {
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_ling, this.cutAmt));
}
for (Map.Entry<Long, Ms> entry : msMap.entrySet()) {
if (entry.getValue().getDisAmt() > 0) {
switch (entry.getValue().getMsTools()) {
case C.MS_TYPE.DIS:
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_zhe, entry.getValue().getDisAmt()));
break;
case C.MS_TYPE.GIFT:
break;
case C.MS_TYPE.MONEY_OFF:
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_man, entry.getValue().getDisAmt()));
break;
case C.MS_TYPE.PROMOTION:
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_cu, entry.getValue().getDisAmt()));
break;
case C.MS_TYPE.SECOND:
preferentialProjects.add(new PreferentialProject(R.mipmap.cart_fragment_zhe, entry.getValue().getDisAmt()));
break;
}
}
}
return preferentialProjects;
}
@Override @Override
public String getOrderTime() { public String getOrderTime() {
...@@ -1104,32 +1064,76 @@ public class Saleorder extends SectionEntity<MediaStore.Video> implements BaseMo ...@@ -1104,32 +1064,76 @@ public class Saleorder extends SectionEntity<MediaStore.Video> implements BaseMo
/** /**
* 优惠项目实体类 * 优惠项目实体类
*/ */
public class PreferentialProject { public class Dis {
public PreferentialProject(Integer bitmapRes, Long money) { private Integer disType;
this.imgRes = bitmapRes; private Long disAmt;
this.money = money;
Dis(Integer disType) {
this.disType = disType;
this.disAmt = 0L;
} }
private Integer imgRes; public Integer getDisType() {
private Long money; return disType;
}
public Integer getImgRes() { public void setDisType(Integer disType) {
return imgRes; this.disType = disType;
} }
public void setImgRes(Integer imgRes) { public Long getDisAmt() {
this.imgRes = imgRes; return disAmt;
} }
public Long getMoney() { public void setDisAmt(Long disAmt) {
return money; this.disAmt = disAmt;
} }
}
public List<Dis> getDisList() {
Dis dis = new Dis(C.DIS_TYPE.DIS);
Dis moneyOff = new Dis(C.DIS_TYPE.MONEY_OFF);
Dis promotion = new Dis(C.DIS_TYPE.PROMOTION);
if (this.vipOffAmt > 0) dis.setDisAmt(dis.getDisAmt() + this.vipOffAmt);
public void setMoney(Long money) { for (Map.Entry<Long, Ms> entry : msMap.entrySet()) {
this.money = money; if (entry.getValue().getDisAmt() > 0) {
switch (entry.getValue().getMsTools()) {
case C.MS_TYPE.DIS:
dis.setDisAmt(dis.getDisAmt() + entry.getValue().getDisAmt());
break;
case C.MS_TYPE.GIFT:
break;
case C.MS_TYPE.MONEY_OFF:
moneyOff.setDisAmt(entry.getValue().getDisAmt());
break;
case C.MS_TYPE.PROMOTION:
promotion.setDisAmt(entry.getValue().getDisAmt());
break;
case C.MS_TYPE.SECOND:
dis.setDisAmt(dis.getDisAmt() + entry.getValue().getDisAmt());
break;
}
}
} }
List<Dis> disList = new ArrayList<>();
if (dis.getDisAmt() > 0) {
disList.add(dis);
}
if (moneyOff.getDisAmt() > 0) {
disList.add(moneyOff);
}
if (promotion.getDisAmt() > 0) {
disList.add(promotion);
}
return disList;
} }
public String getFirstName() { public String getFirstName() {
return firstName; return firstName;
} }
......
package com.xingdata.zzdpos.ui.login.fragment; package com.xingdata.zzdpos.ui.login.fragment;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.text.InputFilter; import android.text.InputFilter;
import android.text.InputType; import android.text.InputType;
import android.view.View; import android.view.View;
...@@ -111,6 +113,38 @@ public class InputPasswordFragment extends BaseFragment<LoginPresenter, ...@@ -111,6 +113,38 @@ public class InputPasswordFragment extends BaseFragment<LoginPresenter,
break; break;
} }
}); });
mViewBinding.etOnePassword.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
Resources res = getResources();
Drawable img_off;
if (b) {
img_off = res.getDrawable(R.mipmap.login_pwd02);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etOnePassword.setCompoundDrawables(img_off, null, null, null);
} else {
img_off = res.getDrawable(R.mipmap.login_pwd01);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etOnePassword.setCompoundDrawables(img_off, null, null, null);
}
}
});
mViewBinding.etTwoPassword.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
Resources res = getResources();
Drawable img_off;
if (b) {
img_off = res.getDrawable(R.mipmap.pwd_two02);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etTwoPassword.setCompoundDrawables(img_off, null, null, null);
} else {
img_off = res.getDrawable(R.mipmap.pwd_two01);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etTwoPassword.setCompoundDrawables(img_off, null, null, null);
}
}
});
} }
public void setStartway(int _startWay) { public void setStartway(int _startWay) {
......
package com.xingdata.zzdpos.ui.login.fragment; package com.xingdata.zzdpos.ui.login.fragment;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.os.Build; import android.os.Build;
import android.text.InputFilter; import android.text.InputFilter;
import android.text.InputType; import android.text.InputType;
...@@ -77,8 +79,9 @@ public class SignInFragment extends BaseFragment<LoginPresenter, ...@@ -77,8 +79,9 @@ public class SignInFragment extends BaseFragment<LoginPresenter,
new android.os.Handler().postDelayed(new Runnable() { new android.os.Handler().postDelayed(new Runnable() {
@Override @Override
public void run() { public void run() {
mPresenter.downList(mViewBinding.etPhone, PopupWindowDownList mPresenter.downList(mViewBinding.etPhone,
.CLERK_LOGIN, null); PopupWindowDownList
.CLERK_LOGIN, null);
} }
}, time); }, time);
...@@ -86,9 +89,10 @@ public class SignInFragment extends BaseFragment<LoginPresenter, ...@@ -86,9 +89,10 @@ public class SignInFragment extends BaseFragment<LoginPresenter,
} }
break; break;
case R.id.btn_login: { case R.id.btn_login: {
if (mViewBinding.etPwd.getText().toString().isEmpty() || mViewBinding.etPhone if (mViewBinding.etPwd.getText().toString().isEmpty() ||
mViewBinding.etPhone
.getText().toString().isEmpty()) { .getText().toString().isEmpty()) {
ToastUtils.showLong("账号密码不能为空"); ToastUtils.showLong("账号密码不能为空");
} else { } else {
promptDialog = new PromptDialog().setDialogType(PromptDialog promptDialog = new PromptDialog().setDialogType(PromptDialog
...@@ -96,7 +100,8 @@ public class SignInFragment extends BaseFragment<LoginPresenter, ...@@ -96,7 +100,8 @@ public class SignInFragment extends BaseFragment<LoginPresenter,
mLoadingDialog.show((BaseActivity) getActivity()); mLoadingDialog.show((BaseActivity) getActivity());
mPresenter.signIn(mViewBinding.etPhone.getText().toString(), mPresenter.signIn(mViewBinding.etPhone.getText().toString(),
mViewBinding mViewBinding
.etPwd.getText().toString(), promptDialog, mLoadingDialog); .etPwd.getText().toString(), promptDialog,
mLoadingDialog);
} }
} }
...@@ -121,6 +126,38 @@ public class SignInFragment extends BaseFragment<LoginPresenter, ...@@ -121,6 +126,38 @@ public class SignInFragment extends BaseFragment<LoginPresenter,
} }
} }
}); });
mViewBinding.etPhone.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
Resources res = getResources();
Drawable img_off;
if (b) {
img_off = res.getDrawable(R.mipmap.login_username2);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etPhone.setCompoundDrawables(img_off, null, null, null);
} else {
img_off = res.getDrawable(R.mipmap.login_username1);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etPhone.setCompoundDrawables(img_off, null, null, null);
}
}
});
mViewBinding.etPwd.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
Resources res = getResources();
Drawable img_off;
if (b) {
img_off = res.getDrawable(R.mipmap.login_pwd02);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etPwd.setCompoundDrawables(img_off, null, null, null);
} else {
img_off = res.getDrawable(R.mipmap.login_pwd01);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etPwd.setCompoundDrawables(img_off, null, null, null);
}
}
});
} }
@Override @Override
......
package com.xingdata.zzdpos.ui.login.fragment; package com.xingdata.zzdpos.ui.login.fragment;
import android.content.res.Resources;
import android.graphics.drawable.Drawable;
import android.view.View; import android.view.View;
import com.xingdata.zzdpos.R; import com.xingdata.zzdpos.R;
...@@ -82,6 +84,38 @@ public class SmsCodeFragment extends BaseFragment<LoginPresenter, ...@@ -82,6 +84,38 @@ public class SmsCodeFragment extends BaseFragment<LoginPresenter,
break; break;
} }
}); });
mViewBinding.etPhone.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
Resources res = getResources();
Drawable img_off;
if (b) {
img_off = res.getDrawable(R.mipmap.login_username2);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etPhone.setCompoundDrawables(img_off, null, null, null);
} else {
img_off = res.getDrawable(R.mipmap.login_username1);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etPhone.setCompoundDrawables(img_off, null, null, null);
}
}
});
mViewBinding.etSmsCode.setOnFocusChangeListener(new View.OnFocusChangeListener() {
@Override
public void onFocusChange(View view, boolean b) {
Resources res = getResources();
Drawable img_off;
if (b) {
img_off = res.getDrawable(R.mipmap.sms02);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etSmsCode.setCompoundDrawables(img_off, null, null, null);
} else {
img_off = res.getDrawable(R.mipmap.sms01);
img_off.setBounds(0, 0, img_off.getMinimumWidth(), img_off.getMinimumHeight());
mViewBinding.etSmsCode.setCompoundDrawables(img_off, null, null, null);
}
}
});
} }
public void sendSmsSucc() { public void sendSmsSucc() {
......
package com.xingdata.zzdpos.ui.settle.adapter;
import com.xingdata.zzdpos.R;
import com.xingdata.zzdpos.base.BaseAdapter;
import com.xingdata.zzdpos.databinding.ItemSettleDisBinding;
import com.xingdata.zzdpos.model.Saleorder;
import java.util.ArrayList;
public class DisAdapter extends BaseAdapter<Saleorder.Dis, ItemSettleDisBinding> {
public DisAdapter() {
super(R.layout.item_settle_dis, new ArrayList<>());
}
@Override
protected void convert(ItemSettleDisBinding mViewBinding, Saleorder.Dis item) {
mViewBinding.setAmt(item.getDisAmt());
mViewBinding.setType(item.getDisType());
}
}
package com.xingdata.zzdpos.ui.settle.adapter; package com.xingdata.zzdpos.ui.settle.adapter;
import android.graphics.Paint;
import android.view.View;
import com.xingdata.zzdpos.R; import com.xingdata.zzdpos.R;
import com.xingdata.zzdpos.base.BaseAdapter; import com.xingdata.zzdpos.base.BaseAdapter;
import com.xingdata.zzdpos.databinding.ItemSettleSaledetailBinding; import com.xingdata.zzdpos.databinding.ItemSettleSaledetailBinding;
import com.xingdata.zzdpos.model.Saledetail; import com.xingdata.zzdpos.model.Saledetail;
import com.xingdata.zzdpos.util.ConvertUtil;
import java.util.ArrayList; import java.util.ArrayList;
public class SaledetailAdapter extends BaseAdapter<Saledetail, ItemSettleSaledetailBinding> { public class SaledetailAdapter extends BaseAdapter<Saledetail, ItemSettleSaledetailBinding> {
public SaledetailAdapter() { public SaledetailAdapter() {
super(R.layout.item_store_saledetail, new ArrayList<>()); super(R.layout.item_settle_saledetail, new ArrayList<>());
} }
@Override @Override
protected void convert(ItemSettleSaledetailBinding mViewBinding, Saledetail item) { protected void convert(ItemSettleSaledetailBinding mViewBinding, Saledetail item) {
mViewBinding.tvName.setText(item.getMsId() > 0 ? "【换购】" + item.getSpuName() : item.getSpuName());
mViewBinding.tvCount.setText(String.valueOf(item.getDetailCnt()));
mViewBinding.tvPrice.setText(ConvertUtil.fenToYuan(item.getSkuPricePay(), true));
mViewBinding.tvAmt.setText(ConvertUtil.fenToYuan(item.getDetailAmt(), true));
if (item.isDiscount()) {
mViewBinding.tvInitialPrice.setText(ConvertUtil.fenToYuan(item.getSkuPrice(), true));
mViewBinding.tvInitialPrice.setVisibility(View.VISIBLE);
mViewBinding.tvInitialPrice.setPaintFlags(mViewBinding.tvPrice.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
} else {
mViewBinding.tvInitialPrice.setVisibility(View.GONE);
}
} }
} }
package com.xingdata.zzdpos.ui.settle.fragment; package com.xingdata.zzdpos.ui.settle.fragment;
import android.support.design.widget.BottomSheetBehavior; import android.support.design.widget.BottomSheetBehavior;
import android.support.v7.widget.LinearLayoutManager;
import android.support.v7.widget.StaggeredGridLayoutManager; import android.support.v7.widget.StaggeredGridLayoutManager;
import android.view.View; import android.view.View;
...@@ -13,6 +14,7 @@ import com.xingdata.zzdpos.model.Saleorder; ...@@ -13,6 +14,7 @@ import com.xingdata.zzdpos.model.Saleorder;
import com.xingdata.zzdpos.model.Vip; import com.xingdata.zzdpos.model.Vip;
import com.xingdata.zzdpos.ui.settle.SettlePresenter; import com.xingdata.zzdpos.ui.settle.SettlePresenter;
import com.xingdata.zzdpos.ui.settle.adapter.PayAdapter; import com.xingdata.zzdpos.ui.settle.adapter.PayAdapter;
import com.xingdata.zzdpos.ui.settle.adapter.SaledetailAdapter;
import com.xingdata.zzdpos.util.ConvertUtil; import com.xingdata.zzdpos.util.ConvertUtil;
import com.xingdata.zzdpos.util.RecyclerViewUtil; import com.xingdata.zzdpos.util.RecyclerViewUtil;
...@@ -24,6 +26,8 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle ...@@ -24,6 +26,8 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle
private PayAdapter mPayAdapter; private PayAdapter mPayAdapter;
private List<Pay> mPays; private List<Pay> mPays;
private SaledetailAdapter mSaledetailAdapter;
@Override @Override
public int getLayoutId() { public int getLayoutId() {
return R.layout.fragment_settle; return R.layout.fragment_settle;
...@@ -86,6 +90,12 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle ...@@ -86,6 +90,12 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle
* 初始化 * 初始化
*/ */
private void initStoreView() { private void initStoreView() {
//init s
mSaledetailAdapter = new SaledetailAdapter();
mViewBinding.rlSaledetail.setAdapter(mPayAdapter);
mViewBinding.rlSaledetail.setLayoutManager(new LinearLayoutManager(mContext));
//set other listener
mViewBinding.llSaledetail.setOnClickListener(view -> mViewBinding.cbSaledetail.setChecked(!mViewBinding.cbSaledetail.isChecked())); mViewBinding.llSaledetail.setOnClickListener(view -> mViewBinding.cbSaledetail.setChecked(!mViewBinding.cbSaledetail.isChecked()));
mViewBinding.llMs.setOnClickListener(view -> mViewBinding.cbMs.setChecked(!mViewBinding.cbMs.isChecked())); mViewBinding.llMs.setOnClickListener(view -> mViewBinding.cbMs.setChecked(!mViewBinding.cbMs.isChecked()));
...@@ -97,6 +107,8 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle ...@@ -97,6 +107,8 @@ public class SettleFragment extends BaseFragment<SettlePresenter, FragmentSettle
mViewBinding.cbMs.setButtonDrawable(b ? R.mipmap.but_up : R.mipmap.but_unfurled); mViewBinding.cbMs.setButtonDrawable(b ? R.mipmap.but_up : R.mipmap.but_unfurled);
mViewBinding.rlMs.setVisibility(b ? View.VISIBLE : View.GONE); mViewBinding.rlMs.setVisibility(b ? View.VISIBLE : View.GONE);
}); });
//init
} }
......
...@@ -3,6 +3,6 @@ ...@@ -3,6 +3,6 @@
<corners android:radius="@dimen/all_radius" /> <corners android:radius="@dimen/all_radius" />
<solid android:color="@color/blue_mawu" /> <solid android:color="@color/red_guanyu" />
</shape> </shape>
\ No newline at end of file
...@@ -2,8 +2,8 @@ ...@@ -2,8 +2,8 @@
<selector xmlns:android="http://schemas.android.com/apk/res/android"> <selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/all_transparent" android:state_enabled="false" /> <item android:drawable="@color/all_transparent" android:state_enabled="false" />
<item android:drawable="@drawable/shape_gray_round_rectangle_stroke" android:state_pressed="true" /> <item android:drawable="@drawable/shape_gray_round_line_stroke" android:state_pressed="true" />
<item android:drawable="@drawable/shape_white_round_rectangle_blue" android:state_focused="true" /> <item android:drawable="@drawable/shape_white_round_line_blue" android:state_focused="true" />
<item android:drawable="@drawable/shape_white_round_rectangle_dark" /> <item android:drawable="@drawable/singleline_white_gray" />
</selector> </selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@color/all_transparent" android:state_enabled="false" />
<item android:drawable="@drawable/shape_gray_round_rectangle_stroke" android:state_pressed="true" />
<item android:drawable="@drawable/shape_white_round_rectangle_blue" android:state_focused="true" />
<item android:drawable="@drawable/shape_white_round_rectangle_dark" />
</selector>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="@color/red_guanyu"/>
</shape>
</item>
<item android:bottom="1.5dp">
<shape>
<solid android:color="@color/white"/>
</shape>
</item>
</layer-list>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<solid android:color="@color/red_guanyu"/>
</shape>
</item>
<item android:bottom="1.5dp">
<shape>
<solid android:color="@color/white"/>
</shape>
</item>
</layer-list>
\ No newline at end of file
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
</shape> </shape>
</item> </item>
<item android:bottom="1dp"> <item android:bottom="1.5dp">
<shape> <shape>
<solid android:color="@color/white"/> <solid android:color="@color/white"/>
</shape> </shape>
......
...@@ -37,7 +37,7 @@ ...@@ -37,7 +37,7 @@
android:layout_width="wrap_content" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true" android:layout_centerInParent="true"
app:SpinKit_Color="@color/white"/> app:SpinKit_Color="@color/black_zhangfei"/>
<TextView <TextView
android:id="@+id/tv_progress" android:id="@+id/tv_progress"
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:layout_centerInParent="true" android:layout_centerInParent="true"
android:text="0 %" android:text="0 %"
android:textColor="@color/white"/> android:textColor="@color/black_zhangfei"/>
</RelativeLayout> </RelativeLayout>
<TextView <TextView
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
android:layout_marginTop="@dimen/all_padding" android:layout_marginTop="@dimen/all_padding"
android:gravity="center" android:gravity="center"
android:text="正在加载数据..." android:text="正在加载数据..."
android:textColor="@color/white"/> android:textColor="@color/black_zhangfei"/>
</LinearLayout> </LinearLayout>
......
...@@ -11,12 +11,12 @@ ...@@ -11,12 +11,12 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/appBack" android:background="@color/white"
> >
<include <include
android:id="@+id/ic_title" android:id="@+id/ic_title"
layout="@layout/title_appback"/> layout="@layout/title"/>
<LinearLayout <LinearLayout
...@@ -50,7 +50,7 @@ ...@@ -50,7 +50,7 @@
android:layout_marginLeft="@dimen/all_margin_left" android:layout_marginLeft="@dimen/all_margin_left"
android:gravity="center|left" android:gravity="center|left"
android:text="北京浙星信息技术有限公司" android:text="北京浙星信息技术有限公司"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/et_textsize" android:textSize="@dimen/et_textsize"
android:textStyle="bold"/> android:textStyle="bold"/>
</LinearLayout> </LinearLayout>
...@@ -73,7 +73,7 @@ ...@@ -73,7 +73,7 @@
android:layout_marginLeft="@dimen/all_margin_left" android:layout_marginLeft="@dimen/all_margin_left"
android:gravity="center|left" android:gravity="center|left"
android:text="丰台万达店" android:text="丰台万达店"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/et_textsize" android:textSize="@dimen/et_textsize"
android:textStyle="bold"/> android:textStyle="bold"/>
</LinearLayout> </LinearLayout>
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
android:layout_marginLeft="@dimen/all_margin_left" android:layout_marginLeft="@dimen/all_margin_left"
android:gravity="center_vertical" android:gravity="center_vertical"
android:text="北京市丰台区万达广场一区" android:text="北京市丰台区万达广场一区"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/et_textsize" android:textSize="@dimen/et_textsize"
android:textStyle="bold"/> android:textStyle="bold"/>
</LinearLayout> </LinearLayout>
...@@ -108,8 +108,7 @@ ...@@ -108,8 +108,7 @@
android:layout_marginTop="@dimen/item_title_margin" android:layout_marginTop="@dimen/item_title_margin"
android:gravity="center" android:gravity="center"
android:orientation="vertical" android:orientation="vertical"
android:visibility="visible" android:visibility="visible">
>
<RelativeLayout <RelativeLayout
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -193,7 +192,7 @@ ...@@ -193,7 +192,7 @@
android:layout_centerVertical="true" android:layout_centerVertical="true"
android:gravity="center_vertical" android:gravity="center_vertical"
android:text="10号款台(新增)" android:text="10号款台(新增)"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/et_textsize" android:textSize="@dimen/et_textsize"
android:textStyle="bold"/> android:textStyle="bold"/>
......
...@@ -12,11 +12,11 @@ ...@@ -12,11 +12,11 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/appBack"> android:background="@color/white">
<include <include
android:id="@+id/ic_title" android:id="@+id/ic_title"
layout="@layout/title_appback"/> layout="@layout/title"/>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
android:layout_marginLeft="@dimen/all_margin_left" android:layout_marginLeft="@dimen/all_margin_left"
android:gravity="center_vertical" android:gravity="center_vertical"
android:text="北京浙星信息技术有限公司" android:text="北京浙星信息技术有限公司"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/et_textsize" android:textSize="@dimen/et_textsize"
android:textStyle="bold"/> android:textStyle="bold"/>
</LinearLayout> </LinearLayout>
......
...@@ -12,11 +12,11 @@ ...@@ -12,11 +12,11 @@
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/appBack"> android:background="@color/white">
<include <include
android:id="@+id/ic_title" android:id="@+id/ic_title"
layout="@layout/title_appback"></include> layout="@layout/title"></include>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="@dimen/et_padding" android:padding="@dimen/et_padding"
android:text="@string/login_createstorefragment_tv_nickname" android:text="@string/login_createstorefragment_tv_nickname"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/text_three_title" android:textSize="@dimen/text_three_title"
android:textStyle="bold"/> android:textStyle="bold"/>
...@@ -59,7 +59,7 @@ ...@@ -59,7 +59,7 @@
<com.xingdata.zzdpos.view.ContainsEmojiEditText <com.xingdata.zzdpos.view.ContainsEmojiEditText
android:id="@+id/et_nickname" android:id="@+id/et_nickname"
style="@style/editText" style="@style/editText_new"
android:ems="10" android:ems="10"
android:hint="@string/login_createstorefragment_et_nickname_hint" android:hint="@string/login_createstorefragment_et_nickname_hint"
android:lines="1" android:lines="1"
...@@ -79,13 +79,13 @@ ...@@ -79,13 +79,13 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="@dimen/et_padding" android:padding="@dimen/et_padding"
android:text="@string/login_createstorefragment_tv_storename" android:text="@string/login_createstorefragment_tv_storename"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/text_three_title" android:textSize="@dimen/text_three_title"
android:textStyle="bold"/> android:textStyle="bold"/>
<com.xingdata.zzdpos.view.ContainsEmojiEditText <com.xingdata.zzdpos.view.ContainsEmojiEditText
android:id="@+id/et_storename" android:id="@+id/et_storename"
style="@style/editText" style="@style/editText_new"
android:ems="10" android:ems="10"
android:hint="@string/login_createstorefragment_et_storename_hint" android:hint="@string/login_createstorefragment_et_storename_hint"
android:lines="1" android:lines="1"
...@@ -136,13 +136,13 @@ ...@@ -136,13 +136,13 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="@dimen/et_padding" android:padding="@dimen/et_padding"
android:text="@string/login_createstorefragment_tv_storeaddress" android:text="@string/login_createstorefragment_tv_storeaddress"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/text_three_title" android:textSize="@dimen/text_three_title"
android:textStyle="bold"/> android:textStyle="bold"/>
<TextView <TextView
android:id="@+id/tv_storeaddress" android:id="@+id/tv_storeaddress"
style="@style/editText" style="@style/editText_new"
android:drawablePadding="@dimen/all_padding" android:drawablePadding="@dimen/all_padding"
android:drawableRight="@mipmap/createstore_drop_down" android:drawableRight="@mipmap/createstore_drop_down"
android:ems="10" android:ems="10"
...@@ -163,13 +163,13 @@ ...@@ -163,13 +163,13 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="@dimen/et_padding" android:padding="@dimen/et_padding"
android:text="@string/login_createstorefragment_tv_storeaddressmessage" android:text="@string/login_createstorefragment_tv_storeaddressmessage"
android:textColor="@color/white" android:textColor="@color/black_baozheng"
android:textSize="@dimen/text_three_title" android:textSize="@dimen/text_three_title"
android:textStyle="bold"/> android:textStyle="bold"/>
<com.xingdata.zzdpos.view.ContainsEmojiEditText <com.xingdata.zzdpos.view.ContainsEmojiEditText
android:id="@+id/tv_storedetailedaddress" android:id="@+id/tv_storedetailedaddress"
style="@style/editText" style="@style/editText_new"
android:ems="15" android:ems="15"
android:hint="@string/login_createstorefragment_et_storedetailedaddress_hint" android:hint="@string/login_createstorefragment_et_storedetailedaddress_hint"
android:lines="1" android:lines="1"
......
...@@ -12,11 +12,13 @@ ...@@ -12,11 +12,13 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/appBack" android:background="@color/white"
android:gravity="center" android:gravity="center"
android:orientation="vertical"> android:orientation="vertical">
<include android:id="@+id/ic_title" layout="@layout/title_appback"/> <include
android:id="@+id/ic_title"
layout="@layout/title"/>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -30,29 +32,25 @@ ...@@ -30,29 +32,25 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:src="@mipmap/login_logo"/> android:src="@mipmap/login_logo"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/et_margin_logo">
<EditText
android:id="@+id/et_one_password"
style="@style/editText"
android:background="@drawable/transparent_border"
android:digits="1234567890"
android:ems="10"
android:hint="@string/login_smscodefragment_et_one_input_password_hint"
android:inputType="textPassword"
android:maxLength="11"/>
</RelativeLayout>
<EditText
android:id="@+id/et_one_password"
style="@style/editText_new"
android:layout_marginTop="@dimen/et_margin_edittext"
android:digits="1234567890"
android:drawableLeft="@mipmap/login_pwd01"
android:ems="10"
android:hint="@string/login_smscodefragment_et_one_input_password_hint"
android:inputType="textPassword"
android:maxLength="8"
/>
<EditText <EditText
android:id="@+id/et_two_password" android:id="@+id/et_two_password"
style="@style/editText" style="@style/editText_new"
android:layout_marginTop="@dimen/et_margin_edittext" android:layout_marginTop="@dimen/et_margin_edittext"
android:digits="1234567890" android:digits="1234567890"
android:drawableLeft="@mipmap/pwd_two01"
android:ems="10" android:ems="10"
android:hint="@string/login_smscodefragment_et_two_input_password_hint" android:hint="@string/login_smscodefragment_et_two_input_password_hint"
android:inputType="textPassword" android:inputType="textPassword"
...@@ -81,7 +79,7 @@ ...@@ -81,7 +79,7 @@
android:layout_marginRight="@dimen/all_margin_left" android:layout_marginRight="@dimen/all_margin_left"
android:onClick="@{onClickListener}" android:onClick="@{onClickListener}"
android:text="已有账号 >" android:text="已有账号 >"
android:textColor="@color/white"/> android:textColor="@color/black_baozheng"/>
</RelativeLayout> </RelativeLayout>
</LinearLayout> </LinearLayout>
</LinearLayout> </LinearLayout>
......
...@@ -215,12 +215,10 @@ ...@@ -215,12 +215,10 @@
android:foreground="?android:attr/actionBarItemBackground" /> android:foreground="?android:attr/actionBarItemBackground" />
</LinearLayout> </LinearLayout>
<android.support.v7.widget.RecyclerView
<View
android:id="@+id/rl_saledetail" android:id="@+id/rl_saledetail"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="300dp" android:layout_height="wrap_content"
android:background="@color/red_xishi"
android:visibility="gone" /> android:visibility="gone" />
<View <View
......
...@@ -7,12 +7,16 @@ ...@@ -7,12 +7,16 @@
name="onClickListener" name="onClickListener"
type="com.xingdata.zzdpos.util.OnClickListener"/> type="com.xingdata.zzdpos.util.OnClickListener"/>
<variable
name="OnFocusChangeListener"
type="android.view.View.OnFocusChangeListener"></variable>
</data> </data>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/appBack" android:background="@color/white"
android:gravity="center" android:gravity="center"
android:orientation="vertical"> android:orientation="vertical">
...@@ -30,8 +34,9 @@ ...@@ -30,8 +34,9 @@
<EditText <EditText
android:id="@+id/et_phone" android:id="@+id/et_phone"
style="@style/editText" style="@style/editText_new"
android:digits="1234567890" android:digits="1234567890"
android:drawableLeft="@mipmap/login_username1"
android:ems="10" android:ems="10"
android:hint="@string/login_et_phone_hint" android:hint="@string/login_et_phone_hint"
android:inputType="phone" android:inputType="phone"
...@@ -62,9 +67,10 @@ ...@@ -62,9 +67,10 @@
<EditText <EditText
android:id="@+id/et_pwd" android:id="@+id/et_pwd"
style="@style/editText" style="@style/editText_new"
android:layout_marginTop="@dimen/et_margin_edittext" android:layout_marginTop="@dimen/et_margin_edittext"
android:digits="1234567890" android:digits="1234567890"
android:drawableLeft="@mipmap/login_pwd01"
android:ems="10" android:ems="10"
android:hint="@string/login_et_password_hint" android:hint="@string/login_et_password_hint"
android:inputType="textPassword" android:inputType="textPassword"
...@@ -98,7 +104,8 @@ ...@@ -98,7 +104,8 @@
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:onClick="@{onClickListener}" android:onClick="@{onClickListener}"
android:text="注册 >" android:text="注册 >"
android:textColor="@color/white"/> android:textColor="@color/black_baozheng"
/>
<TextView <TextView
android:id="@+id/tv_forgotPassword" android:id="@+id/tv_forgotPassword"
...@@ -107,7 +114,7 @@ ...@@ -107,7 +114,7 @@
android:layout_alignParentRight="true" android:layout_alignParentRight="true"
android:onClick="@{onClickListener}" android:onClick="@{onClickListener}"
android:text="忘记密码 ?" android:text="忘记密码 ?"
android:textColor="@color/white"/> android:textColor="@color/black_baozheng"/>
</RelativeLayout> </RelativeLayout>
</LinearLayout> </LinearLayout>
......
...@@ -12,10 +12,12 @@ ...@@ -12,10 +12,12 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="@color/appBack" android:background="@color/white"
android:orientation="vertical"> android:orientation="vertical">
<include android:id="@+id/ic_title" layout="@layout/title_appback"></include> <include
android:id="@+id/ic_title"
layout="@layout/title"></include>
<LinearLayout <LinearLayout
android:layout_width="match_parent" android:layout_width="match_parent"
...@@ -36,8 +38,9 @@ ...@@ -36,8 +38,9 @@
<EditText <EditText
android:id="@+id/et_phone" android:id="@+id/et_phone"
style="@style/editText" style="@style/editText_new"
android:digits="1234567890" android:digits="1234567890"
android:drawableLeft="@mipmap/login_pwd01"
android:ems="10" android:ems="10"
android:gravity="center_vertical" android:gravity="center_vertical"
android:hint="@string/login_et_phone_hint" android:hint="@string/login_et_phone_hint"
...@@ -67,7 +70,7 @@ ...@@ -67,7 +70,7 @@
android:paddingBottom="@dimen/et_padding" android:paddingBottom="@dimen/et_padding"
android:paddingTop="@dimen/et_padding" android:paddingTop="@dimen/et_padding"
android:text="@string/login_smscodefragment_tv_get_sms" android:text="@string/login_smscodefragment_tv_get_sms"
android:textColor="@color/blue"/> android:textColor="@color/black_baozheng"/>
</LinearLayout> </LinearLayout>
...@@ -75,9 +78,10 @@ ...@@ -75,9 +78,10 @@
<EditText <EditText
android:id="@+id/et_sms_code" android:id="@+id/et_sms_code"
style="@style/editText" style="@style/editText_new"
android:layout_marginTop="@dimen/all_margin" android:layout_marginTop="@dimen/all_margin"
android:digits="1234567890" android:digits="1234567890"
android:drawableLeft="@mipmap/sms01"
android:ems="10" android:ems="10"
android:hint="@string/login_smscodefragment_et_input_sms_hint" android:hint="@string/login_smscodefragment_et_input_sms_hint"
android:inputType="phone|number" android:inputType="phone|number"
...@@ -106,7 +110,7 @@ ...@@ -106,7 +110,7 @@
android:layout_marginRight="@dimen/all_margin_left" android:layout_marginRight="@dimen/all_margin_left"
android:onClick="@{onClickListener}" android:onClick="@{onClickListener}"
android:text="已有账号 >" android:text="已有账号 >"
android:textColor="@color/white"/> android:textColor="@color/black_baozheng"/>
</RelativeLayout> </RelativeLayout>
</LinearLayout> </LinearLayout>
......
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<data>
<import type="com.xingdata.zzdpos.util.ConvertUtil" />
<import type="com.xingdata.zzdpos.C.DIS_TYPE" />
<variable
name="type"
type="int" />
<variable
name="amt"
type="long" />
</data>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white_caocao">
<com.facebook.drawee.view.SimpleDraweeView
android:layout_width="0dp"
android:layout_height="0dp"
app:backgroundImage="@color/green_chengyaojin"
app:layout_constraintBottom_toBottomOf="@id/tv_type"
app:layout_constraintLeft_toLeftOf="@id/tv_type"
app:layout_constraintRight_toRightOf="@id/tv_type"
app:layout_constraintTop_toTopOf="@id/tv_type"
app:roundAsCircle="true" />
<TextView
android:id="@+id/tv_type"
android:layout_width="@dimen/all_margin_big"
android:layout_height="@dimen/all_margin_big"
android:layout_marginStart="@dimen/all_margin"
android:gravity="center"
android:text="满"
android:textColor="@color/white_caocao"
android:textSize="@dimen/all_text_size"
app:layout_constraintBottom_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintTop_toBottomOf="parent" />
<TextView
android:id="@+id/tv_dis_amt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/all_spacing"
android:text="@{ConvertUtil.fenToYuan(amt,true)}"
android:textColor="@color/black_zhangfei"
app:layout_constraintBottom_toBottomOf="@id/tv_type"
app:layout_constraintLeft_toRightOf="@id/tv_type"
app:layout_constraintTop_toTopOf="@id/tv_type" />
</android.support.constraint.ConstraintLayout>
</layout>
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<android.support.constraint.ConstraintLayout <android.support.constraint.ConstraintLayout
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" android:layout_height="?attr/actionBarSize"
android:orientation="vertical" android:background="@color/white_caocao"
android:paddingEnd="@dimen/all_margin" android:paddingEnd="@dimen/all_margin"
android:paddingStart="@dimen/all_margin"> android:paddingStart="@dimen/all_margin">
...@@ -48,7 +48,8 @@ ...@@ -48,7 +48,8 @@
app:layout_constraintBottom_toTopOf="@+id/tv_price" app:layout_constraintBottom_toTopOf="@+id/tv_price"
app:layout_constraintLeft_toRightOf="@+id/tv_count" app:layout_constraintLeft_toRightOf="@+id/tv_count"
app:layout_constraintRight_toLeftOf="@+id/tv_amt" app:layout_constraintRight_toLeftOf="@+id/tv_amt"
app:layout_constraintTop_toTopOf="parent" /> app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_chainStyle="packed" />
<TextView <TextView
android:id="@+id/tv_price" android:id="@+id/tv_price"
......
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="@dimen/all_line_width"
android:layout_marginEnd="@dimen/all_margin"
android:layout_marginStart="@dimen/all_margin"
android:background="@color/gray_kongming" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white_caocao"
android:gravity="center_vertical"
android:paddingEnd="@dimen/all_margin"
android:paddingStart="@dimen/all_margin">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="6"
android:gravity="start"
android:text="@string/cart_amt"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="end"
android:text="12"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="4"
android:gravity="end"
android:text="$40.0"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
</LinearLayout>
</LinearLayout>
</layout>
\ No newline at end of file
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="@dimen/all_line_width"
android:layout_marginEnd="@dimen/all_margin"
android:layout_marginStart="@dimen/all_margin"
android:background="@color/gray_kongming" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/white_caocao"
android:gravity="center_vertical"
android:paddingEnd="@dimen/all_margin"
android:paddingStart="@dimen/all_margin">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="6"
android:gravity="start"
android:text="@string/cart_product_name"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="end"
android:text="@string/cart_product_count"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:gravity="end"
android:text="@string/cart_product_price"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
android:gravity="end"
android:text="@string/cart_product_amt"
android:textColor="@color/black_baozheng"
android:textSize="@dimen/all_text_size" />
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="@dimen/all_line_width"
android:layout_marginEnd="@dimen/all_margin"
android:layout_marginStart="@dimen/all_margin"
android:background="@color/gray_kongming" />
</LinearLayout>
</layout>
\ No newline at end of file
app/src/main/res/mipmap-hdpi/splash.png

36.6 KB | W: | H:

app/src/main/res/mipmap-hdpi/splash.png

36.4 KB | W: | H:

app/src/main/res/mipmap-hdpi/splash.png
app/src/main/res/mipmap-hdpi/splash.png
app/src/main/res/mipmap-hdpi/splash.png
app/src/main/res/mipmap-hdpi/splash.png
  • 2-up
  • Swipe
  • Onion skin
...@@ -17,9 +17,9 @@ ...@@ -17,9 +17,9 @@
<item name="windowNoTitle">true</item> <item name="windowNoTitle">true</item>
</style> </style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" /> <style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"/>
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" /> <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"/>
<style name="vicescreen_textview_stlye"> <style name="vicescreen_textview_stlye">
...@@ -325,6 +325,15 @@ ...@@ -325,6 +325,15 @@
<item name="android:textColorHint">@color/hint</item> <item name="android:textColorHint">@color/hint</item>
</style> </style>
<style name="editText_new" parent="view_base">
<item name=" android:background">@drawable/selector_white_background_stroke</item>
<item name="android:padding">@dimen/et_padding</item>
<item name=" android:saveEnabled">false</item>
<item name="android:gravity">center|left</item>
<item name="android:textSize">@dimen/et_textsize</item>
<item name="android:textColorHint">@color/hint</item>
</style>
<style name="Base.Widget.Design.TabLayout" parent="android:Widget"> <style name="Base.Widget.Design.TabLayout" parent="android:Widget">
<item name="tabBackground">@color/white_caocao</item> <item name="tabBackground">@color/white_caocao</item>
<item name="tabIndicatorColor">#FFF</item> <item name="tabIndicatorColor">#FFF</item>
......
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