修改1、2、3级bug(部分)
This commit is contained in:
parent
be6f17f4cd
commit
c87f5d5ffa
@ -84,7 +84,7 @@ dependencies {
|
|||||||
//三级选择
|
//三级选择
|
||||||
implementation 'com.airsaid.library:pickerview:1.0.3'
|
implementation 'com.airsaid.library:pickerview:1.0.3'
|
||||||
//省市区 https://github.com/Bigkoo/Android-PickerView
|
//省市区 https://github.com/Bigkoo/Android-PickerView
|
||||||
implementation 'com.contrarywind:Android-PickerView:4.1.6'
|
compile 'com.contrarywind:Android-PickerView:4.1.6'
|
||||||
implementation 'com.contrarywind:Android-PickerView:4.1.8'
|
implementation 'com.contrarywind:Android-PickerView:4.1.8'
|
||||||
/* //加载html
|
/* //加载html
|
||||||
implementation 'com.github.sendtion:XRichText:1.9.4'*/
|
implementation 'com.github.sendtion:XRichText:1.9.4'*/
|
||||||
|
@ -230,7 +230,6 @@ public class UserActivity extends BaseActivity implements View.OnClickListener {
|
|||||||
Toast.makeText(UserActivity.this, region_id, Toast.LENGTH_SHORT).show();
|
Toast.makeText(UserActivity.this, region_id, Toast.LENGTH_SHORT).show();
|
||||||
String tx = opt1tx + " " + opt2tx + " " + opt3tx;
|
String tx = opt1tx + " " + opt2tx + " " + opt3tx;
|
||||||
region.setText(tx);
|
region.setText(tx);
|
||||||
|
|
||||||
}
|
}
|
||||||
}).setSubmitText("确定")//确定按钮文字
|
}).setSubmitText("确定")//确定按钮文字
|
||||||
.setCancelText("取消")//取消按钮文字
|
.setCancelText("取消")//取消按钮文字
|
||||||
|
@ -5,6 +5,7 @@ import android.os.Bundle;
|
|||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
|
import android.widget.TextView;
|
||||||
|
|
||||||
import androidx.recyclerview.widget.DividerItemDecoration;
|
import androidx.recyclerview.widget.DividerItemDecoration;
|
||||||
import androidx.recyclerview.widget.LinearLayoutManager;
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
@ -30,6 +31,7 @@ public class MessageFragment extends BaseFragment implements View.OnClickListene
|
|||||||
private ImageView messageFinal;
|
private ImageView messageFinal;
|
||||||
private XRecyclerView messageRecycler;
|
private XRecyclerView messageRecycler;
|
||||||
private MessageAdapter messageAdapter;
|
private MessageAdapter messageAdapter;
|
||||||
|
private TextView tvRoad;
|
||||||
|
|
||||||
public static MessageFragment newInstance(Bundle bundle) {
|
public static MessageFragment newInstance(Bundle bundle) {
|
||||||
MessageFragment fragment = new MessageFragment();
|
MessageFragment fragment = new MessageFragment();
|
||||||
@ -49,7 +51,8 @@ public class MessageFragment extends BaseFragment implements View.OnClickListene
|
|||||||
messageFinal.setOnClickListener(this::onClick);
|
messageFinal.setOnClickListener(this::onClick);
|
||||||
messageRecycler = (XRecyclerView) findViewById(R.id.message_recycler);
|
messageRecycler = (XRecyclerView) findViewById(R.id.message_recycler);
|
||||||
messageRecycler.setLayoutManager(new LinearLayoutManager(getActivity()));
|
messageRecycler.setLayoutManager(new LinearLayoutManager(getActivity()));
|
||||||
|
tvRoad = findViewById(R.id.tv_read);
|
||||||
|
tvRoad.setOnClickListener(this::onClick);
|
||||||
messageRecycler.addItemDecoration(new DividerItemDecoration(getActivity(), DividerItemDecoration.VERTICAL));
|
messageRecycler.addItemDecoration(new DividerItemDecoration(getActivity(), DividerItemDecoration.VERTICAL));
|
||||||
messageRecycler.setRefreshProgressStyle(ProgressStyle.BallSpinFadeLoader);
|
messageRecycler.setRefreshProgressStyle(ProgressStyle.BallSpinFadeLoader);
|
||||||
messageRecycler.setLoadingMoreProgressStyle(ProgressStyle.BallRotate);
|
messageRecycler.setLoadingMoreProgressStyle(ProgressStyle.BallRotate);
|
||||||
@ -121,6 +124,10 @@ public class MessageFragment extends BaseFragment implements View.OnClickListene
|
|||||||
case R.id.message_final:
|
case R.id.message_final:
|
||||||
getActivity().finish();
|
getActivity().finish();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case R.id.tv_read:
|
||||||
|
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -30,7 +30,7 @@ import com.umeng.commonsdk.debug.D;
|
|||||||
public class PoiTaskFragment extends BaseFragment implements View.OnClickListener {
|
public class PoiTaskFragment extends BaseFragment implements View.OnClickListener {
|
||||||
private ImageView ivPoiTaskFinish;
|
private ImageView ivPoiTaskFinish;
|
||||||
private XRecyclerView poiTaskXrv;
|
private XRecyclerView poiTaskXrv;
|
||||||
private int type;
|
|
||||||
|
|
||||||
public static PoiTaskFragment newInstance(Bundle bundle) {
|
public static PoiTaskFragment newInstance(Bundle bundle) {
|
||||||
PoiTaskFragment fragment = new PoiTaskFragment();
|
PoiTaskFragment fragment = new PoiTaskFragment();
|
||||||
|
@ -268,7 +268,6 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
|
|||||||
initPoiSaveLocal(false);
|
initPoiSaveLocal(false);
|
||||||
break;
|
break;
|
||||||
case R.id.tv_pictures:
|
case R.id.tv_pictures:
|
||||||
|
|
||||||
// 根据用户点击的时间为视频名称赋值
|
// 根据用户点击的时间为视频名称赋值
|
||||||
DateFormat formatter = new SimpleDateFormat("yyyyMMddHHmmss");
|
DateFormat formatter = new SimpleDateFormat("yyyyMMddHHmmss");
|
||||||
String videoFormatName = formatter.format(new Date());
|
String videoFormatName = formatter.format(new Date());
|
||||||
@ -279,9 +278,9 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
|
|||||||
break;
|
break;
|
||||||
|
|
||||||
case R.id.btn_poi_video_upload:
|
case R.id.btn_poi_video_upload:
|
||||||
|
|
||||||
ArrayList<File> videoFileList = new ArrayList<>();
|
ArrayList<File> videoFileList = new ArrayList<>();
|
||||||
if (ivPoiVideoPicture.getTag() != null) {
|
if (ivPoiVideoPicture.getTag() != null) {
|
||||||
|
showLoadingDialog();
|
||||||
File videoFile = (File) ivPoiVideoPicture.getTag();
|
File videoFile = (File) ivPoiVideoPicture.getTag();
|
||||||
videoFileList.add(videoFile);
|
videoFileList.add(videoFile);
|
||||||
File file = new File(videoFile.getPath()+".txt");
|
File file = new File(videoFile.getPath()+".txt");
|
||||||
@ -293,6 +292,7 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
|
|||||||
public void run() {
|
public void run() {
|
||||||
PoiEntity poiDaoPoiEntity = poiDao.getPoiEntity(showPoiEntity.getId());
|
PoiEntity poiDaoPoiEntity = poiDao.getPoiEntity(showPoiEntity.getId());
|
||||||
if (poiDaoPoiEntity == null || poiDaoPoiEntity.getTaskStatus() == 1 || poiDaoPoiEntity.getTaskStatus() == 2 || poiDaoPoiEntity.getTaskStatus() == 0) {
|
if (poiDaoPoiEntity == null || poiDaoPoiEntity.getTaskStatus() == 1 || poiDaoPoiEntity.getTaskStatus() == 2 || poiDaoPoiEntity.getTaskStatus() == 0) {
|
||||||
|
dismissLoadingDialog();
|
||||||
initPoiSaveLocal(true);
|
initPoiSaveLocal(true);
|
||||||
} else {
|
} else {
|
||||||
getActivity().runOnUiThread(new Runnable() {
|
getActivity().runOnUiThread(new Runnable() {
|
||||||
@ -314,6 +314,7 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void initPoiSaveLocal(boolean isLocal) {
|
public void initPoiSaveLocal(boolean isLocal) {
|
||||||
|
|
||||||
XXPermissions.with(getContext())
|
XXPermissions.with(getContext())
|
||||||
.permission(Permission.MANAGE_EXTERNAL_STORAGE)
|
.permission(Permission.MANAGE_EXTERNAL_STORAGE)
|
||||||
.request(new OnPermissionCallback() {
|
.request(new OnPermissionCallback() {
|
||||||
@ -440,7 +441,6 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
|
|||||||
Toast.makeText(getActivity(), "未压缩完成", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), "未压缩完成", Toast.LENGTH_SHORT).show();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
showLoadingDialog();
|
|
||||||
OkGo
|
OkGo
|
||||||
// 请求方式和请求url
|
// 请求方式和请求url
|
||||||
.<OtherUploadPicBean>post(HttpInterface.POI_VIDEO_UPLOAD_PIC)
|
.<OtherUploadPicBean>post(HttpInterface.POI_VIDEO_UPLOAD_PIC)
|
||||||
@ -473,8 +473,8 @@ public class PoiVideoFragment extends BaseDrawerFragment implements View.OnClick
|
|||||||
public void onError(Response<OtherUploadPicBean> response) {
|
public void onError(Response<OtherUploadPicBean> response) {
|
||||||
super.onError(response);
|
super.onError(response);
|
||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
Toast.makeText(getActivity(), response.code() + "", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getActivity(), "上传失败", Toast.LENGTH_SHORT).show();
|
||||||
Log.d("TAG", "onError: " + response.code() + "");
|
Log.d("TAG", "onError: " + response.message() + "");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
dismissDialog();
|
dismissDialog();
|
||||||
|
@ -263,6 +263,7 @@ public class RoadFragment extends BaseDrawerFragment implements View.OnClickList
|
|||||||
case R.id.road_upload:
|
case R.id.road_upload:
|
||||||
ArrayList<File> videoFileList = new ArrayList<>();
|
ArrayList<File> videoFileList = new ArrayList<>();
|
||||||
if (ivRoadPicture.getTag() != null) {
|
if (ivRoadPicture.getTag() != null) {
|
||||||
|
showLoadingDialog();
|
||||||
File videoFile = (File) ivRoadPicture.getTag();
|
File videoFile = (File) ivRoadPicture.getTag();
|
||||||
videoFileList.add(videoFile);
|
videoFileList.add(videoFile);
|
||||||
File file = new File(videoFile.getPath() + ".txt");
|
File file = new File(videoFile.getPath() + ".txt");
|
||||||
@ -274,6 +275,7 @@ public class RoadFragment extends BaseDrawerFragment implements View.OnClickList
|
|||||||
public void run() {
|
public void run() {
|
||||||
PoiEntity poiDaoPoiEntity = poiDao.getPoiEntity(showPoiEntity.getId());
|
PoiEntity poiDaoPoiEntity = poiDao.getPoiEntity(showPoiEntity.getId());
|
||||||
if (poiDaoPoiEntity == null || poiDaoPoiEntity.getTaskStatus() == 1 || poiDaoPoiEntity.getTaskStatus() == 2 || poiDaoPoiEntity.getTaskStatus() == 0) {
|
if (poiDaoPoiEntity == null || poiDaoPoiEntity.getTaskStatus() == 1 || poiDaoPoiEntity.getTaskStatus() == 2 || poiDaoPoiEntity.getTaskStatus() == 0) {
|
||||||
|
dismissLoadingDialog();
|
||||||
initPoiSaveLocal(true);
|
initPoiSaveLocal(true);
|
||||||
} else {
|
} else {
|
||||||
getActivity().runOnUiThread(new Runnable() {
|
getActivity().runOnUiThread(new Runnable() {
|
||||||
@ -419,7 +421,6 @@ public class RoadFragment extends BaseDrawerFragment implements View.OnClickList
|
|||||||
Toast.makeText(getContext(), "未压缩完成", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), "未压缩完成", Toast.LENGTH_SHORT).show();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
showLoadingDialog();
|
|
||||||
OkGo
|
OkGo
|
||||||
// 请求方式和请求url
|
// 请求方式和请求url
|
||||||
.<OtherUploadPicBean>post(HttpInterface.ROAD_TASK_UPLOAD_PIC)
|
.<OtherUploadPicBean>post(HttpInterface.ROAD_TASK_UPLOAD_PIC)
|
||||||
@ -431,7 +432,6 @@ public class RoadFragment extends BaseDrawerFragment implements View.OnClickList
|
|||||||
@Override
|
@Override
|
||||||
public void onSuccess(Response<OtherUploadPicBean> otherUploadPicBeanResponse) {
|
public void onSuccess(Response<OtherUploadPicBean> otherUploadPicBeanResponse) {
|
||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
|
|
||||||
new Thread(new Runnable() {
|
new Thread(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
@ -454,7 +454,7 @@ public class RoadFragment extends BaseDrawerFragment implements View.OnClickList
|
|||||||
public void onError(Response<OtherUploadPicBean> response) {
|
public void onError(Response<OtherUploadPicBean> response) {
|
||||||
super.onError(response);
|
super.onError(response);
|
||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
Toast.makeText(getContext(), response.code() + "", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), "上传失败", Toast.LENGTH_SHORT).show();
|
||||||
Log.d("TAG", "onError: " + response.code() + "");
|
Log.d("TAG", "onError: " + response.code() + "");
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -110,7 +110,7 @@ public class StaySubmitFragment extends BaseFragment implements View.OnClickList
|
|||||||
obtain.what = Constant.EVENT_WHAT_COMPLETE_TASK;
|
obtain.what = Constant.EVENT_WHAT_COMPLETE_TASK;
|
||||||
obtain.obj = poiEntity;
|
obtain.obj = poiEntity;
|
||||||
EventBus.getDefault().post(obtain);
|
EventBus.getDefault().post(obtain);
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
cbSelect.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
cbSelect.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
|
||||||
@ -126,9 +126,9 @@ public class StaySubmitFragment extends BaseFragment implements View.OnClickList
|
|||||||
public void onEvent(Message data) {
|
public void onEvent(Message data) {
|
||||||
if (data.what == Constant.EVENT_STAY_REFRESH) {
|
if (data.what == Constant.EVENT_STAY_REFRESH) {
|
||||||
if ((boolean)data.obj){
|
if ((boolean)data.obj){
|
||||||
Toast.makeText(getContext(), "成功", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), "提交成功", Toast.LENGTH_SHORT).show();
|
||||||
}else {
|
}else {
|
||||||
Toast.makeText(getContext(), "失败", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), "提交失败", Toast.LENGTH_SHORT).show();
|
||||||
}
|
}
|
||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
refreshData();
|
refreshData();
|
||||||
@ -225,7 +225,7 @@ public class StaySubmitFragment extends BaseFragment implements View.OnClickList
|
|||||||
}else {
|
}else {
|
||||||
Toast.makeText(getContext(), "请选择要删除的条目数据", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), "请选择要删除的条目数据", Toast.LENGTH_SHORT).show();
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -234,9 +234,13 @@ public class StaySubmitFragment extends BaseFragment implements View.OnClickList
|
|||||||
|
|
||||||
if (roadEntities == null) {
|
if (roadEntities == null) {
|
||||||
roadEntities = new ArrayList<>();
|
roadEntities = new ArrayList<>();
|
||||||
|
}else {
|
||||||
|
roadEntities.clear();
|
||||||
}
|
}
|
||||||
if (newEntities == null) {
|
if (newEntities == null) {
|
||||||
newEntities = new ArrayList<>();
|
newEntities = new ArrayList<>();
|
||||||
|
}else {
|
||||||
|
newEntities.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
new Thread(new Runnable() {
|
new Thread(new Runnable() {
|
||||||
|
@ -955,7 +955,7 @@ public class TreasureFragment extends BaseFragment implements View.OnClickListen
|
|||||||
int type = data.arg1;
|
int type = data.arg1;
|
||||||
showPoiMarkerByType(type, latLng);
|
showPoiMarkerByType(type, latLng);
|
||||||
} else if (data.what == Constant.EVENT_WHAT_COMPLETE_TASK) {
|
} else if (data.what == Constant.EVENT_WHAT_COMPLETE_TASK) {
|
||||||
initRemoveFragment();
|
// initRemoveFragment();
|
||||||
PoiEntity poiEntity = (PoiEntity) data.obj;
|
PoiEntity poiEntity = (PoiEntity) data.obj;
|
||||||
Bundle bundle = new Bundle();
|
Bundle bundle = new Bundle();
|
||||||
bundle.putBoolean("isSliding", true); // 通知抽屉不收回
|
bundle.putBoolean("isSliding", true); // 通知抽屉不收回
|
||||||
|
@ -29,7 +29,7 @@ public class WithdrawFragment extends BaseFragment implements View.OnClickListen
|
|||||||
private TextView tvText;
|
private TextView tvText;
|
||||||
private TextView tvAll, tvUnit, tvAlready, tvTotal;
|
private TextView tvAll, tvUnit, tvAlready, tvTotal;
|
||||||
private Button btWithdraw;
|
private Button btWithdraw;
|
||||||
private Double canExchangePrice;
|
private double canExchangePrice;
|
||||||
private EditText etAllPrice;
|
private EditText etAllPrice;
|
||||||
private TextView poiPushMoney;
|
private TextView poiPushMoney;
|
||||||
private TextView poiReportMoney;
|
private TextView poiReportMoney;
|
||||||
@ -79,6 +79,7 @@ public class WithdrawFragment extends BaseFragment implements View.OnClickListen
|
|||||||
chargingReportMoney = (TextView) findViewById(R.id.charging_report_money);
|
chargingReportMoney = (TextView) findViewById(R.id.charging_report_money);
|
||||||
otherPushMoney = (TextView) findViewById(R.id.other_push_money);
|
otherPushMoney = (TextView) findViewById(R.id.other_push_money);
|
||||||
otherReportMoney = (TextView) findViewById(R.id.other_report_money);
|
otherReportMoney = (TextView) findViewById(R.id.other_report_money);
|
||||||
|
|
||||||
initNetWork();
|
initNetWork();
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -164,7 +165,7 @@ public class WithdrawFragment extends BaseFragment implements View.OnClickListen
|
|||||||
@Override
|
@Override
|
||||||
public void onSuccess(UserPriceExchangeBean response, int id) {
|
public void onSuccess(UserPriceExchangeBean response, int id) {
|
||||||
dismissLoadingDialog();
|
dismissLoadingDialog();
|
||||||
Toast.makeText(getContext(), "提现成功", Toast.LENGTH_SHORT).show();
|
Toast.makeText(getContext(), response.getMessage(), Toast.LENGTH_SHORT).show();
|
||||||
Log.d("TAG", "onSuccess: " + response.toString() + "tttttttt");
|
Log.d("TAG", "onSuccess: " + response.toString() + "tttttttt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ public class HttpInterface {
|
|||||||
//http://172.23.139.4:8004/userPrice/1/getPrice
|
//http://172.23.139.4:8004/userPrice/1/getPrice
|
||||||
public static final String GET_PRICE = IPm5 + "userPrice/1/getPrice";//我的-总资产
|
public static final String GET_PRICE = IPm5 + "userPrice/1/getPrice";//我的-总资产
|
||||||
//http://172.23.139.4:8004/userPrice/1/userPriceExchange?exchangeMoney=10&payType=1
|
//http://172.23.139.4:8004/userPrice/1/userPriceExchange?exchangeMoney=10&payType=1
|
||||||
public static final String USER_PRICE_EXCHANGE = IPm5 + "userPriceExchange";//我的-财务信息-提现
|
public static final String USER_PRICE_EXCHANGE = IPm5 + "userPrice/1/userPriceExchange";//我的-财务信息-提现
|
||||||
|
|
||||||
|
|
||||||
public static final String IPm6 = "http://dtxbmaps.navinfo.com/dtxb/task/";
|
public static final String IPm6 = "http://dtxbmaps.navinfo.com/dtxb/task/";
|
||||||
|
@ -337,7 +337,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*全景照片"
|
android:text="*全景照片"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_panorama"
|
android:layout_below="@id/image_panorama"
|
||||||
@ -372,7 +372,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*充电桩编码"
|
android:text="*充电桩编码"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_coding"
|
android:layout_below="@id/image_coding"
|
||||||
@ -453,7 +453,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*设备标牌"
|
android:text="*设备标牌"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_equipment"
|
android:layout_below="@id/image_equipment"
|
||||||
@ -488,7 +488,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*设备标牌"
|
android:text="*设备标牌"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_facility"
|
android:layout_below="@id/image_facility"
|
||||||
@ -525,7 +525,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*设备标牌"
|
android:text="*设备标牌"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_scutcheon"
|
android:layout_below="@id/image_scutcheon"
|
||||||
@ -562,7 +562,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*设备标牌"
|
android:text="*设备标牌"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_device"
|
android:layout_below="@id/image_device"
|
||||||
|
@ -284,7 +284,7 @@
|
|||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/linear_photograph"
|
android:id="@+id/linear_photograph"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="200dp"
|
android:layout_height="250dp"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
android:layout_marginStart="10dp"
|
android:layout_marginStart="10dp"
|
||||||
android:layout_marginEnd="10dp"
|
android:layout_marginEnd="10dp"
|
||||||
@ -319,7 +319,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*全景照片"
|
android:text="*全景照片"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_panorama"
|
android:layout_below="@id/image_panorama"
|
||||||
@ -354,7 +354,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*名称照片"
|
android:text="*名称照片"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_name"
|
android:layout_below="@id/image_name"
|
||||||
@ -389,7 +389,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="*服务说明"
|
android:text="*服务说明"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_internal"
|
android:layout_below="@id/image_internal"
|
||||||
@ -430,7 +430,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="充电站指引牌"
|
android:text="充电站指引牌"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_else"
|
android:layout_below="@id/image_else"
|
||||||
@ -465,7 +465,7 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:text="停车收费标牌"
|
android:text="停车收费标牌"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_scutcheon"
|
android:layout_below="@id/image_scutcheon"
|
||||||
|
@ -170,9 +170,9 @@
|
|||||||
android:id="@+id/ll_image_picture"
|
android:id="@+id/ll_image_picture"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_margin="20dp"
|
android:layout_margin="10dp"
|
||||||
android:layout_marginStart="20dp"
|
android:layout_marginStart="10dp"
|
||||||
android:layout_marginEnd="20dp"
|
android:layout_marginEnd="10dp"
|
||||||
android:layout_marginBottom="9dp"
|
android:layout_marginBottom="9dp"
|
||||||
android:gravity="center"
|
android:gravity="center"
|
||||||
android:orientation="horizontal"
|
android:orientation="horizontal"
|
||||||
@ -205,7 +205,7 @@
|
|||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:text="照片"
|
android:text="照片"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:textSize="8sp" />
|
android:textSize="12sp" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_picture"
|
android:id="@+id/iv_picture"
|
||||||
@ -236,10 +236,10 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_below="@id/image_pictures"
|
android:layout_below="@id/image_pictures"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="12dp"
|
||||||
android:text="照片"
|
android:text="照片"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:textSize="8sp" />
|
android:textSize="12sp" />
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:id="@+id/iv_pictures"
|
android:id="@+id/iv_pictures"
|
||||||
|
@ -246,7 +246,7 @@
|
|||||||
<LinearLayout
|
<LinearLayout
|
||||||
android:id="@+id/linear_photograph"
|
android:id="@+id/linear_photograph"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="200dp"
|
android:layout_height="250dp"
|
||||||
android:layout_margin="10dp"
|
android:layout_margin="10dp"
|
||||||
android:layout_marginStart="10dp"
|
android:layout_marginStart="10dp"
|
||||||
android:layout_marginEnd="10dp"
|
android:layout_marginEnd="10dp"
|
||||||
@ -280,8 +280,9 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
android:text="*全景图"
|
android:text="*全景图"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_panorama"
|
android:layout_below="@id/image_panorama"
|
||||||
@ -315,8 +316,9 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
android:text="*名称"
|
android:text="*名称"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_name"
|
android:layout_below="@id/image_name"
|
||||||
@ -350,8 +352,9 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
android:text="内部照片"
|
android:text="内部照片"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_internal"
|
android:layout_below="@id/image_internal"
|
||||||
@ -391,8 +394,9 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
android:text="名片"
|
android:text="名片"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_card"
|
android:layout_below="@id/image_card"
|
||||||
@ -426,8 +430,9 @@
|
|||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerHorizontal="true"
|
android:layout_centerHorizontal="true"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
android:text="其他"
|
android:text="其他"
|
||||||
android:textSize="8sp"
|
android:textSize="12sp"
|
||||||
android:layout_margin="5dp"
|
android:layout_margin="5dp"
|
||||||
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
android:textColor="@color/pickerview_wheelview_textcolor_divider"
|
||||||
android:layout_below="@id/image_else"
|
android:layout_below="@id/image_else"
|
||||||
|
@ -42,7 +42,9 @@
|
|||||||
android:id="@+id/tab_record"
|
android:id="@+id/tab_record"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="40dp"
|
android:layout_height="40dp"
|
||||||
app:tabMode="fixed"
|
app:tabMode="fixed"
|
||||||
|
app:tabGravity="fill"
|
||||||
|
app:tabMaxWidth="0dp"
|
||||||
app:tabTextColor="@color/colormap"
|
app:tabTextColor="@color/colormap"
|
||||||
app:tabSelectedTextColor="@color/white"
|
app:tabSelectedTextColor="@color/white"
|
||||||
app:tabRippleColor="@color/colormap"
|
app:tabRippleColor="@color/colormap"
|
||||||
|
@ -165,6 +165,9 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_marginLeft="20dp"
|
android:layout_marginLeft="20dp"
|
||||||
|
android:maxLines="1"
|
||||||
|
android:inputType="number"
|
||||||
|
android:singleLine="true"
|
||||||
android:layout_toRightOf="@id/tv_view"
|
android:layout_toRightOf="@id/tv_view"
|
||||||
android:background="@null"
|
android:background="@null"
|
||||||
android:hint="请输入提现金额"
|
android:hint="请输入提现金额"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user