private void responseReserve() { this.applyLookTextView.setEnabled(false); if (lookCountBadgeView.isShown()) { lookCountBadgeView.increment(1); } else { lookCountBadgeView.setText((appDto.getReserveCount() + 1) + ""); lookCountBadgeView.show(); } }
private void responseUserHouse() { headImageView.setImageURL(Constants.HOST_IP + userDto.getLogoUrl()); if (StringUtils.isBlank(userDto.getLogoUrl())) { headImageView.setBorderWidth(0); } else { headImageView.setBorderWidth(2); } double totalEarnings = Double.parseDouble(userDto.getHqMoney()); // 只有当数字大于0.10的时候,才会有涨动的动画,而且,如果小于0.10,金额会显示为0.00,且界面卡动。 if (totalEarnings >= 0.10) { totalMoneyTextView.setValue(totalEarnings); magicScrollView.AddListener(totalMoneyTextView); mHandler.sendEmptyMessageDelayed(0, 100); } else { totalMoneyTextView.setText(userDto.getHqMoney()); } totalMoneyTextView.setText(userDto.getHqMoney()); yesterdayEarningsTextView.setText("昨日收益:" + userDto.getHqYesterday()); moneyTextView.setText(userDto.getSurplusMoney()); hqStatusTextView.setText(userDto.isAutoPay() ? "已开启" : "未开启"); if (userDto.getReserveCount() > 0) { countBadgeView.setText(userDto.getReserveCount() + ""); countBadgeView.show(true); } else { countBadgeView.hide(false); } if (userDto.getHouses().isEmpty()) { noHouseImageView.setVisibility(View.VISIBLE); } else { noHouseImageView.setVisibility(View.GONE); } contentLayout.removeAllViews(); for (UserHouseListAppDto dto : userDto.getHouses()) { TenantMeLayout layout = new TenantMeLayout(this); layout.setData(dto); LinearLayout.LayoutParams params = new LinearLayout.LayoutParams( LinearLayout.LayoutParams.MATCH_PARENT, LinearLayout.LayoutParams.WRAP_CONTENT); params.setMargins(0, 0, 0, AdapterUtil.dip2px(this, 20)); contentLayout.addView(layout, params); } }
private void responseHouseInfo() { if (!appDto.getTags().isEmpty()) { flowlayout.setVisibility(View.VISIBLE); flowlayout.setAdapter( new TagAdapter<String>(appDto.getTags()) { @Override public View getView(FlowLayout parent, int position, String s) { TextView tv = (TextView) LayoutInflater.from(KeeperHouseInfoPublishActivity.this) .inflate(R.layout.tag_layout, parent, false); tv.setText(s); return tv; } }); } imageURLList = appDto.getTopImages(); initViewPager(); viewPagerAdapter.notifyDataSetChanged(); viewPager.setFocusable(true); viewPager.setFocusableInTouchMode(true); viewPager.requestFocus(); this.communityTextView.setText(appDto.getCommunity() + " " + appDto.getHouseType()); this.areaTextView.setText(appDto.getAreaStr()); this.moneyTextView.setText(appDto.getMonthMoney()); this.monthTextView.setText("元/月"); this.leaseTypeTextView.setText( Html.fromHtml( "<font color=#999999>类型:</font><font color=#222222>" + appDto.getLeaseType() + "</font>")); this.decorateTextView.setText( Html.fromHtml( "<font color=#999999>装修:</font><font color=#222222>" + appDto.getDecorate() + "</font>")); this.areaSizeTextView.setText( Html.fromHtml( "<font color=#999999>面积:</font><font color=#222222>" + appDto.getSize() + "</font>")); this.orientationTextView.setText( Html.fromHtml( "<font color=#999999>朝向:</font><font color=#222222>" + appDto.getOrientation() + "</font>")); this.floorTextView.setText( Html.fromHtml( "<font color=#999999>楼层:</font><font color=#222222>" + appDto.getFloor() + "</font>")); this.leaseTimeTextView.setText(appDto.getLeaseTimeStr()); this.adapter.setData(appDto.getEquipments(), false); this.heatingFeesTextView.setText(appDto.isHeatingFees() ? "租户交" : "房东交"); this.busTextView.setText( Html.fromHtml( "<font color=#999999>公交:</font><font color=#222222>" + appDto.getBus() + "</font>")); this.subwayTextView.setText( Html.fromHtml( "<font color=#999999>地铁:</font><font color=#222222>" + appDto.getSubway() + "</font>")); this.applyLookTextView.setEnabled(appDto.isAdd()); if (appDto.getReserveCount() == 0) { lookCountBadgeView.hide(); } else { lookCountBadgeView.setText(appDto.getReserveCount() + ""); lookCountBadgeView.show(true); } }