日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

android - 房源登记模版

發(fā)布時(shí)間:2023/12/31 编程问答 35 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android - 房源登记模版 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

[1] 實(shí)現(xiàn)順序

房源登記-》房源預(yù)審核-》
房屋信息house_regist01 (首頁(yè)改為模版)-》
選擇模版(添加模版+模版列表)-》
編輯模版

[2] 具體圖片

[3] 實(shí)現(xiàn)代碼

house_regist01 Layout

<com.cnhct.hechen.View.Titlebarandroid:id="@+id/titlebar_house_regist01"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="@color/red"android:padding="10sp"custom:leftButtonText="返回"custom:leftButtonTextColor="@color/white"custom:leftButtonTextSize="8sp"custom:rightButtonText="模版"custom:rightButtonTextSize="8sp"custom:rightButtonTextColor="@color/white"custom:titleColor="@color/colorWhite"custom:titleSize="8sp"custom:titleText="房屋信息">

house_regist01 Activity

public void initDate() {tb = (Titlebar) findViewById(R.id.titlebar_house_regist01);tb.setOnButtonClickListener(new Titlebar.OnButtonClickListener() {@Overridepublic void onLeftClick() {final WarningDialog dialog = SmartisanDialog.createWarningDialog(house_regist01.this);dialog.setTitle("您信息尚未填寫完整,確定退出嗎").setConfirmText("退出").show();dialog.setOnConfirmListener(new WarningDialog.OnConfirmListener() {@Overridepublic void onConfirm() {EventBus.getDefault().post("FLAG_FINISH_ALL");dialog.dismiss();}});}@Overridepublic void onRightClick() {//選擇模版Intent intent = new Intent(house_regist01.this, TemplateListActivity.class);startActivity(intent);finish();}});

TemplateListActivity 選擇模版(添加模版+模版列表)
Layout

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:custom="http://schemas.android.com/apk/res-auto"xmlns:tools="http://schemas.android.com/tools"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context="com.cnhct.hechen.activity.TemplateListActivity"><com.cnhct.hechen.View.Titlebarandroid:id="@+id/titlebar_template"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="@color/red"android:padding="10sp"custom:leftButtonText="返回"custom:leftButtonTextColor="@color/white"custom:leftButtonTextSize="8sp"custom:rightButtonText="首頁(yè)"custom:rightButtonTextColor="@color/white"custom:rightButtonTextSize="8sp"custom:titleColor="@color/colorWhite"custom:titleSize="8sp"custom:titleText="選擇模版"></com.cnhct.hechen.View.Titlebar><TextViewandroid:layout_width="match_parent"android:layout_height="3dp"/><Buttonandroid:id="@+id/btn_add"android:layout_width="match_parent"android:layout_height="45dp"android:text="@string/add"android:layout_marginLeft="2dp"android:layout_marginRight="2dp"android:background="@drawable/btn_shape"android:textColor="@android:color/holo_red_light"android:textSize="18sp" /><TextViewandroid:layout_width="match_parent"android:layout_height="3dp"/><android.support.v4.widget.SwipeRefreshLayoutandroid:id="@+id/layout_swipe_refresh"android:layout_width="match_parent"android:layout_height="match_parent"tools:ignore="MissingConstraints"tools:layout_editor_absoluteX="8dp"tools:layout_editor_absoluteY="8dp"><android.support.v7.widget.RecyclerViewandroid:id="@+id/new_recyclerView"android:layout_width="match_parent"android:layout_height="match_parent"/></android.support.v4.widget.SwipeRefreshLayout></LinearLayout>

template_item

<?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"><TextViewandroid:layout_height="1dp"android:layout_width="match_parent"android:background="@color/gray"/><TextViewandroid:id="@+id/tv_template_title"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="@string/template_one"android:textColor="@color/black"android:textSize="20sp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"><TextViewandroid:id="@+id/tv_template_time"android:layout_width="wrap_content"android:layout_height="wrap_content"android:layout_weight="10"android:text="@string/time"android:textColor="@color/wgray"android:textSize="16sp" /><Buttonandroid:id="@+id/btn_template_use"android:layout_width="wrap_content"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/shape"android:text="@string/user"android:textColor="@color/red"android:textSize="12sp" /></LinearLayout><TextViewandroid:layout_height="1dp"android:layout_width="match_parent"android:background="@color/gray"/> </LinearLayout>

btn_shape

<?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android"><!-- 邊框顏色值 --><item><shape><solid android:color="@android:color/holo_red_dark" /><!-- android:radius 弧形的半徑 --><corners android:radius="5dip" /></shape></item><!-- 主體背景顏色值,控件間的間距 --><itemandroid:bottom="1dp"android:top="1dp"android:left="1dp"android:right="1dp"><shape><solid android:color="@android:color/white" /></shape></item></layer-list>

TemplateListActivity

package com.cnhct.hechen.activity; import android.content.Intent; import android.support.v4.widget.SwipeRefreshLayout; import android.support.v7.app.AppCompatActivity; import android.os.Bundle; import android.support.v7.widget.LinearLayoutManager; import android.support.v7.widget.RecyclerView; import android.view.KeyEvent; import android.view.View; import android.widget.Button; import android.widget.Toast; import com.cnhct.hechen.R; import com.cnhct.hechen.View.Titlebar; import com.cnhct.hechen.adapter.TemplateRecyclerViewAdapter; import cc.duduhuo.dialog.smartisan.SmartisanDialog; import cc.duduhuo.dialog.smartisan.WarningDialog;public class TemplateListActivity extends AppCompatActivity {private RecyclerView mRecyclerView;private SwipeRefreshLayout mSwipeRefreshLayout;private LinearLayoutManager mLinearLayoutManager;private TemplateRecyclerViewAdapter mTemplateRecyclerViewAdapter;private Button btn_add;private Titlebar tb;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_template_list);initView();mLinearLayoutManager = new LinearLayoutManager(this);mTemplateRecyclerViewAdapter = new TemplateRecyclerViewAdapter(TemplateListActivity.this);mRecyclerView.setLayoutManager(mLinearLayoutManager);mRecyclerView.setAdapter(mTemplateRecyclerViewAdapter);mTemplateRecyclerViewAdapter.setOnItemClickListener(new TemplateRecyclerViewAdapter.OnItemClickListener(){@Overridepublic void OnItemClick(View view, int position) {int i = position +1;Toast.makeText(TemplateListActivity.this,"選擇模版"+i,Toast.LENGTH_SHORT).show();}});mSwipeRefreshLayout.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {public void onRefresh() {mTemplateRecyclerViewAdapter.notifyDataSetChanged();mSwipeRefreshLayout.setRefreshing(false);}});btn_add.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Intent intent = new Intent(TemplateListActivity.this, template.class);startActivity(intent);finish();}});}private void initView(){mRecyclerView = (RecyclerView)findViewById(R.id.new_recyclerView);mSwipeRefreshLayout = (SwipeRefreshLayout)findViewById(R.id.layout_swipe_refresh);btn_add = (Button)findViewById(R.id.btn_add);tb = (Titlebar) findViewById(R.id.titlebar_template);tb.setOnButtonClickListener(new Titlebar.OnButtonClickListener() {@Overridepublic void onLeftClick() {final WarningDialog dialog = SmartisanDialog.createWarningDialog(TemplateListActivity.this);dialog.setTitle("您信息尚未填寫完整,確定退出嗎").setConfirmText("退出").show();dialog.setOnConfirmListener(new WarningDialog.OnConfirmListener() {@Overridepublic void onConfirm() {//EventBus.getDefault().post("FLAG_FINISH_ALL");Intent intent1 =new Intent(TemplateListActivity.this,house_regist01.class);startActivity(intent1);finish();dialog.dismiss();}});}@Overridepublic void onRightClick() {//返回首頁(yè)Intent intent2 = new Intent(TemplateListActivity.this, home.class);startActivity(intent2);finish();}});}/*** 監(jiān)聽返回鍵* @param keyCode 鍵* @param event 事件* @return*/@Overridepublic boolean onKeyDown(int keyCode, KeyEvent event) {if (keyCode == KeyEvent.KEYCODE_BACK) {final WarningDialog dialog = SmartisanDialog.createWarningDialog(TemplateListActivity.this);dialog.setTitle("您信息尚未填寫完整,確定退出嗎").setConfirmText("退出").show();dialog.setOnConfirmListener(new WarningDialog.OnConfirmListener() {@Overridepublic void onConfirm() {//EventBus.getDefault().post("FLAG_FINISH_ALL");Intent intent =new Intent(TemplateListActivity.this,house_regist01.class);startActivity(intent);finish();dialog.dismiss();}});}return super.onKeyDown(keyCode, event);}}

TemplateRecyclerViewAdapter

package com.cnhct.hechen.adapter;import android.content.Context; import android.support.v7.widget.RecyclerView; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.Button; import android.widget.TextView;import com.cnhct.hechen.R;public class TemplateRecyclerViewAdapter extends RecyclerView.Adapter<TemplateRecyclerViewAdapter.ViewHolder>{private LayoutInflater layoutInflater;private Context mContext;public TemplateRecyclerViewAdapter(Context context){this.mContext = context;layoutInflater = LayoutInflater.from(context);}@Overridepublic ViewHolder onCreateViewHolder(ViewGroup parent, int viewType){View itemView=layoutInflater.inflate(R.layout.template_item, parent,false);ViewHolder viewHolder=new ViewHolder(itemView);return viewHolder;}@Overridepublic void onBindViewHolder(ViewHolder holder, int position){holder.itemView.setTag(position);}@Overridepublic int getItemCount(){return 1;}class ViewHolder extends RecyclerView.ViewHolder{private TextView tv_template_title;private TextView tv_template_time;private Button btn_template_use;public ViewHolder(View itemView){super(itemView);tv_template_title = (TextView)itemView.findViewById(R.id.tv_template_title);tv_template_time = (TextView)itemView.findViewById(R.id.tv_template_time);btn_template_use = (Button)itemView.findViewById(R.id.btn_template_use);itemView.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {if (onItemClickListener!=null){onItemClickListener.OnItemClick(v,(int)v.getTag());}}});}}public interface OnItemClickListener{void OnItemClick(View view, int position);}private OnItemClickListener onItemClickListener;public void setOnItemClickListener(OnItemClickListener onItemClickListener){this.onItemClickListener=onItemClickListener;} }

編輯模版

activity_template_layout

<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"xmlns:tools="http://schemas.android.com/tools"xmlns:custom="http://schemas.android.com/apk/res-auto"android:id="@+id/activity_template"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"tools:context="com.cnhct.hechen.activity.template"><com.cnhct.hechen.View.Titlebarandroid:id="@+id/title_bar_template"android:layout_width="match_parent"android:layout_height="wrap_content"android:background="@color/red"android:padding="10sp"custom:leftButtonText="返回"custom:leftButtonTextColor="@android:color/white"custom:leftButtonTextSize="8sp"custom:rightButtonText="首頁(yè)"custom:rightButtonTextColor="@android:color/white"custom:rightButtonTextSize="8sp"custom:titleColor="@color/colorWhite"custom:titleSize="8sp"custom:titleText="編輯模版"></com.cnhct.hechen.View.Titlebar><ScrollViewandroid:layout_width="match_parent"android:layout_height="match_parent"android:scrollbars="none"tools:ignore="UselessParent"><LinearLayoutandroid:id="@+id/linear_page"android:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"android:paddingBottom="10dp"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:focusable="true"android:focusableInTouchMode="true"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/administrative"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/sp_xzq_template"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:hint="@string/choose"android:spinnerMode="dialog"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/town"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/sp_jd_template"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:spinnerMode="dialog"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/street"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><AutoCompleteTextViewandroid:id="@+id/auto_tv_house01_template"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:background="@null"android:ems="10"android:hint="@string/keywords"android:spinnerMode="dialog"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/gatehouse"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/sp_mlp_template"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:background="@null"android:ems="10"android:inputType=""android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/adress"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_Address_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:hint="@string/roomNU"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/wordTrack"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/tv_house_reg01_zg_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/caseNumber"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_ah_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp"tools:ignore="TextFields" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/blank"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/license"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_hnum_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:inputType="number"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/propertyArea"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_house_regist_cqmj_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:hint="@string/squareMeter"android:inputType="number"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/propertyOwner"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_name_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp"tools:ignore="TextFields" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:id="@+id/layout_hreg01_gjdq"android:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/region"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/tv_hreg01_nation_template"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:id="@+id/layout_hreg01_zjlx"android:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/typeOfCertificate"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/tv_hreg01_zjlx_template"android:layout_width="0dp"android:layout_height="match_parent"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/IDnumber"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content"tools:ignore="TooManyViews" /><EditTextandroid:id="@+id/et_cardnum_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:inputType="number"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp"tools:ignore="TooManyViews" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/mobilePhone"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_call_template"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:inputType="number"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:focusable="true"android:focusableInTouchMode="true"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/publishTitle"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_reg_title"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:focusable="true"android:focusableInTouchMode="true"android:maxLength="20"android:textColor="@color/black"android:textSize="15sp"tools:ignore="TextFields" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/propertyAddress"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_housesaddress"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:textColor="@color/black"android:textSize="15sp"tools:ignore="TextFields" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/use"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/sp_fwyt"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/toward"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_oritation"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/buildingProperties"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_house_info"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/totalFloors"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_house_gylc"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/fllor"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_storey"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/decoration"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_fixinfo"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/rentalArea"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_acreage"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:focusable="true"android:focusableInTouchMode="true"android:hint="@string/meter"android:inputType="number"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/HUxing"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_shi"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><EditTextandroid:id="@+id/et_describe"android:layout_width="match_parent"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:background="@drawable/shape_gray_square_bg"android:gravity="top"android:hint="@string/description"android:lines="5"android:maxLength="200"android:textSize="13sp" /></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/paymentMethod"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_paymethod"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/asterisk"android:textColor="@color/red" /><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/rent"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><EditTextandroid:id="@+id/et_rent"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:background="@null"android:ems="10"android:inputType="number"android:maxLines="1"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout><TextViewandroid:layout_width="match_parent"android:layout_height="1dp"android:background="@color/gray"android:paddingTop="10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="wrap_content"android:layout_height="wrap_content"android:text="@string/leasingMethods"android:textSize="15sp" /><TextViewandroid:layout_width="5dp"android:layout_height="wrap_content" /><TextViewandroid:id="@+id/et_Leasemode"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1"android:ems="10"android:hint="@string/choose"android:textColor="@color/black"android:textSize="15sp" /></LinearLayout></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /><CheckBoxandroid:id="@+id/shui_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/waterl" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/dian_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/electricitying" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/lanqi_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/heat" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/kuandai_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/broadband" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /><CheckBoxandroid:id="@+id/dianti_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/elevatoring" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/dianshi_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/TV" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/meiqi_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/gasing" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/lutai_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/terrace" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /><CheckBoxandroid:id="@+id/chewei_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/ParkingSpace" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/ccroom_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/storageRoom" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1" /><TextViewandroid:layout_width="0dp"android:layout_height="30dp"android:layout_weight="0.2" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /></LinearLayout></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="vertical"><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /><CheckBoxandroid:id="@+id/chuang_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/bed" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/dianhua_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/phone" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/kongtiao_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/conditioning" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/bingxiang_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/refrigerator" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /><CheckBoxandroid:id="@+id/chuju_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/kitchenware" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/jiaju_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/furniture" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/weibolu_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/MicrowaveOven" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><CheckBoxandroid:id="@+id/xiyiji_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/washingMachine" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /></LinearLayout><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:orientation="horizontal"android:paddingBottom="10dp"android:paddingLeft="5dp"android:paddingRight="5dp"android:paddingTop="10dp"><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /><CheckBoxandroid:id="@+id/reshuiqi_reg"android:layout_width="0dp"android:layout_height="30dp"android:layout_weight="1"android:background="@drawable/zf_ck__bg"android:button="@null"android:checked="false"android:gravity="center"android:text="@string/WaterHeater" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.2" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="1" /><TextViewandroid:layout_width="0dp"android:layout_height="wrap_content"android:layout_weight="0.1" /></LinearLayout></LinearLayout><include layout="@layout/horizontal_divider_10dp" /><LinearLayoutandroid:layout_width="match_parent"android:layout_height="wrap_content"android:paddingLeft="5dp"android:paddingRight="5dp"><Buttonandroid:id="@+id/btn_save_template"android:layout_width="match_parent"android:layout_height="35dp"android:background="@color/main_color"android:text="@string/saveTemplate"android:textColor="@color/white" /></LinearLayout></LinearLayout></ScrollView></LinearLayout>

template_activity

package com.cnhct.hechen.activity;import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v7.app.AppCompatActivity; import android.text.Editable; import android.text.TextWatcher; import android.util.Log; import android.view.Gravity; import android.view.KeyEvent; import android.view.View; import android.widget.AdapterView; import android.widget.ArrayAdapter; import android.widget.AutoCompleteTextView; import android.widget.Button; import android.widget.CheckBox; import android.widget.EditText; import android.widget.TextView; import android.widget.Toast;import com.android.volley.AuthFailureError; import com.android.volley.Request; import com.android.volley.RequestQueue; import com.android.volley.Response; import com.android.volley.VolleyError; import com.android.volley.toolbox.StringRequest; import com.android.volley.toolbox.Volley; import com.cnhct.hechen.R; import com.cnhct.hechen.View.SelectPicPopupWindow; import com.cnhct.hechen.View.Titlebar; import com.cnhct.hechen.adapter.GvUpdatePicAdapter; import com.cnhct.hechen.entity.Address; import com.cnhct.hechen.entity.CodeDetail; import com.cnhct.hechen.entity.HouseInfo; import com.cnhct.hechen.utils.CheckIdCard; import com.cnhct.hechen.utils.HttpUtils; import com.cnhct.hechen.utils.PhoneFormatCheckUtils; import com.cnhct.hechen.utils.ProgressHUD; import com.cnhct.hechen.utils.ToastUtil; import com.cnhct.hechen.utils.getJsonUtils; import com.cnhct.hechen.utils.getListUtils; import com.google.gson.Gson; import com.google.gson.GsonBuilder; import com.google.gson.JsonSyntaxException; import com.google.gson.reflect.TypeToken;import net.tsz.afinal.FinalHttp; import net.tsz.afinal.http.AjaxCallBack; import net.tsz.afinal.http.AjaxParams;import org.greenrobot.eventbus.EventBus; import org.greenrobot.eventbus.Subscribe; import org.greenrobot.eventbus.ThreadMode;import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map;import butterknife.BindView; import butterknife.ButterKnife; import cc.duduhuo.dialog.smartisan.OptionListDialog; import cc.duduhuo.dialog.smartisan.SmartisanDialog; import cc.duduhuo.dialog.smartisan.WarningDialog; import cc.duduhuo.dialog.smartisan.listener.OnOptionItemSelectListener; import okhttp3.Call; import okhttp3.Callback; import okhttp3.MultipartBody; import okhttp3.OkHttpClient; import okhttp3.RequestBody;/*** 1. ButterKnife 獲取組件* 2. 定義組件對(duì)應(yīng)的變量*/public class template extends AppCompatActivity implements View.OnClickListener{@BindView(R.id.title_bar_template) Titlebar title_bar_template;@BindView(R.id.sp_xzq_template) TextView sp_xzq_template;@BindView(R.id.sp_jd_template) TextView sp_jd_template;@BindView(R.id.auto_tv_house01_template) AutoCompleteTextView auto_tv_house01_template;@BindView(R.id.sp_mlp_template) EditText sp_mlp_template;@BindView(R.id.et_Address_template) EditText et_Address_template;@BindView(R.id.tv_house_reg01_zg_template) TextView tv_house_reg01_zg_template;@BindView(R.id.et_ah_template) EditText et_ah_template;@BindView(R.id.et_hnum_template) EditText et_hnum_template;@BindView(R.id.et_house_regist_cqmj_template) EditText et_house_regist_cqmj_template;@BindView(R.id.et_name_template) EditText et_name_template;@BindView(R.id.tv_hreg01_nation_template) TextView tv_hreg01_nation_template;@BindView(R.id.tv_hreg01_zjlx_template) TextView tv_hreg01_zjlx_template;@BindView(R.id.et_cardnum_template) EditText et_cardnum_template;@BindView(R.id.et_call_template) EditText et_call_template;@BindView(R.id.et_reg_title) EditText et_reg_title;@BindView(R.id.et_housesaddress) EditText et_housesaddress;@BindView(R.id.sp_fwyt) TextView sp_fwyt;@BindView(R.id.et_oritation) TextView et_oritation;@BindView(R.id.et_house_info) TextView et_house_info;@BindView(R.id.et_house_gylc) TextView et_house_gylc;@BindView(R.id.et_storey) TextView et_storey;@BindView(R.id.et_fixinfo) TextView et_fixinfo;@BindView(R.id.et_acreage) EditText et_acreage;@BindView(R.id.et_shi) TextView et_shi;@BindView(R.id.et_describe) EditText et_describe;@BindView(R.id.et_paymethod) TextView et_paymethod;@BindView(R.id.et_rent) EditText et_rent;@BindView(R.id.et_Leasemode) TextView et_Leasemode;@BindView(R.id.shui_reg) CheckBox shui_reg;@BindView(R.id.dian_reg) CheckBox dian_reg;@BindView(R.id.lanqi_reg) CheckBox lanqi_reg;@BindView(R.id.kuandai_reg) CheckBox kuandai_reg;@BindView(R.id.dianti_reg) CheckBox dianti_reg;@BindView(R.id.dianshi_reg) CheckBox dianshi_reg;@BindView(R.id.meiqi_reg) CheckBox meiqi_reg;@BindView(R.id.lutai_reg) CheckBox lutai_reg;@BindView(R.id.chewei_reg) CheckBox chewei_reg;@BindView(R.id.ccroom_reg) CheckBox ccroom_reg;@BindView(R.id.chuang_reg) CheckBox chuang_reg;@BindView(R.id.dianhua_reg) CheckBox dianhua_reg;@BindView(R.id.kongtiao_reg) CheckBox kongtiao_reg;@BindView(R.id.bingxiang_reg) CheckBox bingxiang_reg;@BindView(R.id.chuju_reg) CheckBox chuju_reg;@BindView(R.id.jiaju_reg) CheckBox jiaju_reg;@BindView(R.id.weibolu_reg) CheckBox weibolu_reg;@BindView(R.id.xiyiji_reg) CheckBox xiyiji_reg;@BindView(R.id.reshuiqi_reg) CheckBox reshuiqi_reg;@BindView(R.id.btn_save_template) Button btn_save_template;private List<String> xzq_list;private String code;private List<Address> list_jz;private List<String> mList_jz;private String jzCode;private RequestQueue queue;private ProgressHUD mProgressHUD;private List<Address> list_jlx;private List<String> mList_jlx;private String jlxCode;private List<CodeDetail> listCodeDetail;private List<CodeDetail> listCodeDetailZg;private List<String> mListNation;private List<String> mListCode;private String nationCode;private List<String> mListZgName;private List<String> mListZgCode;private String zgCode;private List<String> cardtype_list;private List<String> mlistZjlxCode;private List<String> mListLdxz;private List<String> mListFwyt;private List<String> mListGylc;private List<String> mListOritation;private List<String> mListFixInfo;private List<String> mListPayMethod;private List<String> mListLeaseMode;private String gylc;private String shi;private String ting;private String chu;private String wei;SelectPicPopupWindow menuWindow;//廳室選擇器private String HZQ = "天河區(qū)"; //行政區(qū)名稱private String JZ; //街鎮(zhèn)名稱private String JLX; //街路巷名稱private String MLP; //門樓牌private String XZ; //詳址private String ZG; //字軌private String AH; //案號(hào)private String CQZH ;//產(chǎn)權(quán)證號(hào)private String CQMJ ;//產(chǎn)權(quán)面積private double areaValue = 1.0;private String YZXM ;//業(yè)主姓名private String GJDQ ;//國(guó)籍地區(qū)private String ZJLX ;//證件類型private String SFZH ;//身份證號(hào)private String YZDH ; //業(yè)主電話private String FBBT ;//發(fā)布標(biāo)題private String LPDZ ;//樓盤地址private String FWYT ;//房屋用途private String CX ;//朝向private String LDXZ ;//樓棟性質(zhì)private String ZLC ;//總樓層private String floor; //所屬樓層private String ZXCD; //裝修程度private String CZMJ ;//出租面積private String HXS ; //戶型(室)private String FYMS; //房源描述private String ZJZFFS; //租金支付方式private String ZJ; //租金private String ZLFS ;//租賃方式private String PZS ;//配置水private String PZD ;//配置電private String PZNQ ;//配置暖氣private String PZKD ;//配置寬帶private String PZDT ;//配置電梯private String PZDS ;//配置電視private String PZMQ ;//配置煤氣private String PZLTHY ;//配置露臺(tái)花園private String PZCWCK ;//配置車位車庫(kù)private String PZCCSDXS ;//配置儲(chǔ)藏室地下室private String PZC ;//配置床private String PZDH ;//配置電話private String PZKT ;//配置空調(diào)private String PZBX ;//配置冰箱private String PZCJ ;//配置廚具private String PZJJ ;//配置家具private String PZWBL ;//配置微波爐private String PZXYJ ;//配置洗衣機(jī)private String PZRSQ ;//配置熱水器private HouseInfo houseInfo;private String userId;private SharedPreferences pref;private GvUpdatePicAdapter adapter_old;private String path;private Button buttonSubmit;private String type;private double latitude, longitude;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_template);Log.i("執(zhí)行","這里");ButterKnife.bind(this);EventBus.getDefault().register(this);houseInfo = new HouseInfo();initEvent();queue = Volley.newRequestQueue(this);mProgressHUD = ProgressHUD.show(template.this, "請(qǐng)稍等", true, true, null);mProgressHUD.dismiss();initData();queryZg(); //請(qǐng)求字軌selectNationalityArea(); //選擇國(guó)籍地區(qū)pref = PreferenceManager.getDefaultSharedPreferences(this);userId = pref.getString("userId", "");type = pref.getString("type", "");Log.i("userId"+userId,"type"+type);}private void initEvent(){//標(biāo)題欄title_bar_template.setOnButtonClickListener(new Titlebar.OnButtonClickListener() {@Overridepublic void onLeftClick() {//返回模版列表final WarningDialog dialog = SmartisanDialog.createWarningDialog(template.this);dialog.setTitle("您信息尚未填寫完整,確定退出嗎").setConfirmText("退出").show();dialog.setOnConfirmListener(new WarningDialog.OnConfirmListener() {@Overridepublic void onConfirm() {//EventBus.getDefault().post("FLAG_FINISH_ALL");Intent intent = new Intent(template.this,TemplateListActivity.class);startActivity(intent);finish();dialog.dismiss();}});}@Overridepublic void onRightClick() {//首頁(yè)Intent intent = new Intent(template.this, home.class);startActivity(intent);finish();}});sp_xzq_template.setOnClickListener(this); //選擇行政區(qū)sp_jd_template.setOnClickListener(this); //街道auto_tv_house01_template.setOnClickListener(this); //查詢關(guān)鍵字tv_hreg01_nation_template.setOnClickListener(this); //國(guó)籍地區(qū)tv_hreg01_zjlx_template.setOnClickListener(this); //證件類型sp_fwyt.setOnClickListener(this); //房屋用途et_oritation.setOnClickListener(this); //朝向et_house_info.setOnClickListener(this); //樓棟性質(zhì)et_house_gylc.setOnClickListener(this); //總樓層et_storey.setOnClickListener(this); //所屬樓層et_fixinfo.setOnClickListener(this); //裝修程度et_shi.setOnClickListener(this); //戶型et_paymethod.setOnClickListener(this); //支付方式et_Leasemode.setOnClickListener(this); //租賃方式btn_save_template.setOnClickListener(this); //保存}//得到所有選擇了的cb的值public void getCbData() {if (shui_reg.isChecked()) {houseInfo.setPZS(1 + "");}if (dian_reg.isChecked()) {houseInfo.setPZD(1 + "");}if (lanqi_reg.isChecked()) {houseInfo.setPZNQ(1);}if (kuandai_reg.isChecked()) {houseInfo.setPZKD(1);}if (dianti_reg.isChecked()) {houseInfo.setPZDT(1 + "");}if (dianshi_reg.isChecked()) {houseInfo.setPZDS(1);}if (meiqi_reg.isChecked()) {houseInfo.setPZMQ(1);}if (lutai_reg.isChecked()) {houseInfo.setPZLTHY(1 + "");}if (chewei_reg.isChecked()) {houseInfo.setPZCWCK(1 + "");}if (ccroom_reg.isChecked()) {houseInfo.setPZCCSDXS(1 + "");}if (chuang_reg.isChecked()) {houseInfo.setPZC(1);}if (dianhua_reg.isChecked()) {houseInfo.setPZDH(1 + "");}if (kongtiao_reg.isChecked()) {houseInfo.setPZKT(1);}if (bingxiang_reg.isChecked()) {houseInfo.setPZBX(1);}if (chuju_reg.isChecked()) {houseInfo.setPZCJ(1 + "");}if (jiaju_reg.isChecked()) {houseInfo.setPZJJ(1);}if (weibolu_reg.isChecked()) {houseInfo.setPZWBL(1);}if (xiyiji_reg.isChecked()) {houseInfo.setPZXYJ(1);}if (reshuiqi_reg.isChecked()) {houseInfo.setPZXYJ(1);}Log.d("test", "===============" + houseInfo.getPZXYJ() + "=========");}private void initData() {mListGylc = new ArrayList<>();for (int i = 1; i < 100; i++) {mListGylc.add(i + "");}cardtype_list = getListUtils.getListZjlx();mlistZjlxCode = new ArrayList<>();mlistZjlxCode.add("01");mlistZjlxCode.add("02");mlistZjlxCode.add("03");mlistZjlxCode.add("05");mlistZjlxCode.add("04");mlistZjlxCode.add("06");mlistZjlxCode.add("11");mlistZjlxCode.add("12");mlistZjlxCode.add("13");mlistZjlxCode.add("14");mlistZjlxCode.add("15");mListFwyt = new ArrayList<>();mListFwyt.add("住宅");mListFwyt.add("商業(yè)");mListFwyt.add("辦公");mListFwyt.add("倉(cāng)庫(kù)");mListFwyt.add("其他");mListFwyt.add("工廠");mListLdxz = new ArrayList<>();mListLdxz.add("電梯房");mListLdxz.add("樓梯房");mListOritation = new ArrayList<>();mListOritation.add("東");mListOritation.add("南");mListOritation.add("西");mListOritation.add("北");mListOritation.add("東南");mListOritation.add("西南");mListOritation.add("東北");mListOritation.add("西北");mListOritation.add("東西");mListOritation.add("南北");mListOritation.add("不知朝向");mListFixInfo = new ArrayList<>();mListFixInfo.add("豪華裝修");mListFixInfo.add("精裝修");mListFixInfo.add("中等裝修");mListFixInfo.add("簡(jiǎn)裝修");mListFixInfo.add("毛坯");mListFixInfo.add("普通裝修");mListPayMethod = new ArrayList<>();mListPayMethod.add("押3付1");mListPayMethod.add("押2付1");mListPayMethod.add("押1付1");mListPayMethod.add("押1付2");mListPayMethod.add("年付不押");mListPayMethod.add("半年付不押");mListPayMethod.add("面議");mListLeaseMode = new ArrayList<>();mListLeaseMode.add("合租");mListLeaseMode.add("整租");}@Overridepublic void onClick(View view){switch (view.getId()){case R.id.sp_xzq_template:selectAdministrative();break;case R.id.sp_jd_template:break;case R.id.auto_tv_house01_template:break;case R.id.tv_hreg01_nation_template:break;case R.id.tv_hreg01_zjlx_template:selectDocumentType(); //選擇證件類型break;case R.id.sp_fwyt:selectHousingPurposes(); //房屋用途break;case R.id.et_oritation:selectToward(); //選擇朝向break;case R.id.et_house_info:selectBuildingProperties(); //樓棟性質(zhì)break;case R.id.et_house_gylc:selectBuildFloor(); //樓棟樓層break;case R.id.et_storey:selectFloor(); //所屬樓層break;case R.id.et_fixinfo:selectDegreeOfDecoration(); //裝修程度break;case R.id.et_shi:selectHuxing(); //戶型break;case R.id.btn_save_template:Log.i("btn_save_template","onclick");JudgeUserInputData(); //對(duì)數(shù)據(jù)進(jìn)行判斷break;case R.id.et_paymethod:selectPaymentMethod(); //選擇支付方式break;case R.id.et_Leasemode:selectLeasingMethod(); //選擇租賃方式break;}}/*** 選擇行政區(qū)*/private void selectAdministrative(){xzq_list = getListUtils.getXZQWithNoTitle();final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇行政區(qū)").setOptionList(xzq_list).setItemGravity(Gravity.CENTER) // Item是居左、居中還是居右.setLastColor(0xFF40B64A) // 上次選擇的選項(xiàng)顯示的顏色,用于區(qū)分.show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {HZQ = xzq_list.get(position);sp_xzq_template.setText(HZQ);Map<String, String> map = new HashMap<String, String>();map.put("海珠區(qū)", "440105");map.put("天河區(qū)", "440106");map.put("白云區(qū)", "440111");map.put("黃埔區(qū)", "440112");map.put("番禺區(qū)", "440113");map.put("花都區(qū)", "440114");map.put("南沙區(qū)", "440115");map.put("從化區(qū)", "440117");map.put("荔灣區(qū)", "440103");map.put("越秀區(qū)", "440104");map.put("增城區(qū)", "440118");code = map.get(HZQ);if (HZQ != null) {queryPostJZ();auto_tv_house01_template.addTextChangedListener(new TextWatcher() {@Overridepublic void beforeTextChanged(CharSequence s, int start, int count, int after) {}@Overridepublic void onTextChanged(CharSequence s, int start, int before, int count) {String text = auto_tv_house01_template.getText().toString().trim();queryPostJLX(text);}@Overridepublic void afterTextChanged(Editable s) {String text = auto_tv_house01_template.getText().toString();queryPostJLX(text);}});}dialog.dismiss();}});}/*** 發(fā)送網(wǎng)絡(luò)請(qǐng)求街鎮(zhèn),Post 行政區(qū)代碼過(guò)去*/private void queryPostJZ() {AjaxParams params = new AjaxParams();params.put("code", code);FinalHttp http = new FinalHttp();http.get(HttpUtils.ADDRESS_URL_JZ, params, new AjaxCallBack<Object>() {@Overridepublic void onLoading(long count, long current) {}@Overridepublic void onSuccess(Object o) {if (o != null) {String json = o.toString();System.out.println("---" + json);try {Gson gson = new Gson();list_jz = gson.fromJson(json, new TypeToken<List<Address>>() {}.getType());if (list_jz.size() > 0 && list_jz != null) {mList_jz = new ArrayList<>();for (int i = 0; i < list_jz.size(); i++) {mList_jz.add(list_jz.get(i).getName());}}} catch (JsonSyntaxException e) {e.printStackTrace();}sp_jd_template.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇街道").setOptionList(mList_jz).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {JZ = mList_jz.get(position);jzCode = list_jz.get(position).getCode();sp_jd_template.setText(JZ);dialog.dismiss();}});}});}}@Overridepublic void onFailure(Throwable t, int errorNo, String strMsg) {}});}/*** 發(fā)送網(wǎng)絡(luò)請(qǐng)求街路巷,Post 街路巷的輸入值* @param text*/private void queryPostJLX(final String text) {final Response.Listener<String> listener = new Response.Listener<String>() {public void onResponse(String json) {mProgressHUD.dismiss();if (json != null) {try {Gson gson = new Gson();list_jlx = gson.fromJson(json, new TypeToken<List<Address>>() {}.getType());//街路巷集合(包括名稱和編碼)if (list_jlx != null) {if (list_jlx.size() > 0 && list_jlx != null) {mList_jlx = new ArrayList<>();//街路巷的名稱集合for (int i = 0; i < list_jlx.size(); i++) {mList_jlx.add(list_jlx.get(i).getName());}ArrayAdapter<String> adapter = new ArrayAdapter<String>(template.this,android.R.layout.simple_dropdown_item_1line,mList_jlx);auto_tv_house01_template.setThreshold(1);//從第一個(gè)字符開始auto_tv_house01_template.setAdapter(adapter);adapter.notifyDataSetChanged();auto_tv_house01_template.setOnItemClickListener(new AdapterView.OnItemClickListener() {@Overridepublic void onItemClick(AdapterView<?> parent, View view, int position, long id) {JLX = auto_tv_house01_template.getText().toString();if (!JLX.equals("")) {int p = 0;for (int i = 0; i < mList_jlx.size(); i++) {if (JLX.equals(mList_jlx.get(i))) {p = i;}}if (list_jlx != null && list_jlx.size() != 0) {jlxCode = list_jlx.get(p).getCode();//從服務(wù)器獲得的集合list_jlxmProgressHUD.show();}}}});}}} catch (JsonSyntaxException e) {e.printStackTrace();}} else {ToastUtil.ToastDemo(template.this, "暫無(wú)信息");}}};Response.ErrorListener errlistener = new Response.ErrorListener() {public void onErrorResponse(VolleyError error) {}};Request request = new StringRequest(Request.Method.POST, HttpUtils.URL_JLX_NEW, listener, errlistener) {@Overrideprotected Map<String, String> getParams() throws AuthFailureError {Map map = new HashMap();map.put("code", code);//行政區(qū)的codemap.put("key", text);//發(fā)送輸入框的值return map;}};queue.add(request);queue.start();}/*** 選擇國(guó)籍地區(qū)*/private void selectNationalityArea(){String json = getJsonUtils.getJson(this, "country.txt");Gson gson = new Gson();listCodeDetail = gson.fromJson(json, new TypeToken<List<CodeDetail>>() {}.getType());mListNation = new ArrayList<>();mListCode = new ArrayList<>();for (int i = 0; i < listCodeDetail.size(); i++) {mListNation.add(listCodeDetail.get(i).getNAME());//國(guó)籍地區(qū)名稱mListCode.add(listCodeDetail.get(i).getCODE());//國(guó)籍地區(qū)代碼}tv_hreg01_nation_template.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇國(guó)籍").setOptionList(mListNation).setItemGravity(Gravity.CENTER) // Item是居左、居中還是居右.setLastColor(0xFF40B64A) // 上次選擇的選項(xiàng)顯示的顏色,用于區(qū)分.show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {tv_hreg01_nation_template.setText(mListNation.get(position));//國(guó)家的codenationCode = mListCode.get(position);dialog.dismiss();}});}});}//請(qǐng)求字軌private void queryZg() {final RequestQueue queue3 = Volley.newRequestQueue(template.this);final Response.Listener<String> listener = new Response.Listener<String>() {public void onResponse(String json) {Gson gson = new Gson();listCodeDetailZg = gson.fromJson(json, new TypeToken<List<CodeDetail>>() {}.getType());mListZgName = new ArrayList<>();mListZgCode = new ArrayList<>();for (int i = 0; i < listCodeDetailZg.size(); i++) {mListZgName.add(listCodeDetailZg.get(i).getNAME());//字軌名稱mListZgCode.add(listCodeDetailZg.get(i).getCODE());//字軌代碼}tv_house_reg01_zg_template.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇字軌").setOptionList(mListZgName).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {tv_house_reg01_zg_template.setText(mListZgName.get(position));//字軌CodezgCode = mListZgCode.get(position);dialog.dismiss();}});}});}};Response.ErrorListener errlistener = new Response.ErrorListener() {public void onErrorResponse(VolleyError error) {}};Request request = new StringRequest(Request.Method.POST, HttpUtils.URL_GETZG, listener, errlistener) {@Overrideprotected Map<String, String> getParams() throws AuthFailureError {Map map = new HashMap();return map;}};queue3.add(request);queue3.start();}/*** 選擇證件類型*/private void selectDocumentType(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇證件類型").setOptionList(cardtype_list).setItemGravity(Gravity.CENTER) // Item是居左、居中還是居右.setLastColor(0xFF40B64A) // 上次選擇的選項(xiàng)顯示的顏色,用于區(qū)分.show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {tv_hreg01_zjlx_template.setText(cardtype_list.get(position));ZJLX = mlistZjlxCode.get(position);dialog.dismiss();}});}/*** 選擇房屋用途*/private void selectHousingPurposes(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇房屋用途").setOptionList(mListFwyt).setItemGravity(Gravity.CENTER) // Item是居左、居中還是居右.setLastColor(0xFF40B64A) // 上次選擇的選項(xiàng)顯示的顏色,用于區(qū)分.show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {sp_fwyt.setText(mListFwyt.get(position));switch (position) {case 0:FWYT = "01";break;case 1:FWYT = "11";break;case 2:FWYT = "12";break;case 3:FWYT = "13";break;case 4:FWYT = "14";break;case 5:FWYT = "20";break;}dialog.dismiss();}});}/*** 選擇朝向*/private void selectToward(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇朝向").setOptionList(mListOritation).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_oritation.setText(mListOritation.get(position));switch (position) {case 0:CX = "1";break;case 1:CX = "3";break;case 2:CX = "2";break;case 3:CX = "4";break;case 4:CX = "5";break;case 5:CX = "6";break;case 6:CX = "7";break;case 7:CX = "8";break;case 8:CX = "9";break;case 9:CX = "10";break;case 10:CX = "11";break;}dialog.dismiss();}});}/*** 選擇樓棟性質(zhì)*/private void selectBuildingProperties(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇樓棟性質(zhì)").setOptionList(mListLdxz).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_house_info.setText(mListLdxz.get(position));switch (position) {case 0:LDXZ = "01";break;case 1:LDXZ = "02";break;}dialog.dismiss();}});}/*** 選擇總樓層數(shù)*/private void selectBuildFloor(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇總樓層").setOptionList(mListGylc).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_house_gylc.setText(mListGylc.get(position));gylc = mListGylc.get(position);dialog.dismiss();}});}/*** 選擇所屬樓層*/private void selectFloor(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇所在樓層").setOptionList(mListGylc).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_storey.setText(mListGylc.get(position));floor = mListGylc.get(position);dialog.dismiss();}});}/*** 選擇裝修程度*/private void selectDegreeOfDecoration(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇裝修程度").setOptionList(mListFixInfo).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_fixinfo.setText(mListFixInfo.get(position));switch (position) {case 0:ZXCD = "6";break;case 1:ZXCD = "4";break;case 2:ZXCD = "3";break;case 3:ZXCD = "5";break;case 4:ZXCD = "1";break;case 5:ZXCD = "2";break;}dialog.dismiss();}});}/*** 選擇戶型*/private void selectHuxing(){//實(shí)例化SelectPicPopupWindowmenuWindow = new SelectPicPopupWindow(template.this, itemsOnClick);//顯示窗口menuWindow.showAtLocation(template.this.findViewById(R.id.linear_page), Gravity.BOTTOM|Gravity.CENTER_HORIZONTAL, 0, 0);}//獲得eventbus的通知后,重新刷新數(shù)據(jù)@Subscribe(threadMode = ThreadMode.MAIN)public void updateEventBus(String message) {if (message.equals("FLAG_FINISH_ALL")) {template.this.finish();}else {if (message != null) {et_shi.setText(message);shi = message.substring(0,1);ting = message.substring(2,3);chu = message.substring(4,5);wei = message.substring(6,7);}}}//為彈出窗口實(shí)現(xiàn)監(jiān)聽類private View.OnClickListener itemsOnClick = new View.OnClickListener(){public void onClick(View v) {menuWindow.dismiss();switch (v.getId()) {case R.id.t_picker:break;case R.id.s_picker:break;case R.id.c_picker:break;case R.id.w_picker:break;default:break;}}};/*** 選擇支付方式*/private void selectPaymentMethod(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇支付方式").setOptionList(mListPayMethod).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_paymethod.setText(mListPayMethod.get(position));switch (position) {case 0:ZJZFFS = "1";break;case 1:ZJZFFS = "2";break;case 2:ZJZFFS = "3";break;case 3:ZJZFFS = "4";break;case 4:ZJZFFS = "5";break;case 5:ZJZFFS = "6";break;case 6:ZJZFFS = "7";break;default:ZJZFFS = "";break;}dialog.dismiss();}});}/*** 租賃方式*/private void selectLeasingMethod(){final OptionListDialog dialog = SmartisanDialog.createOptionListDialog(template.this);dialog.setTitle("請(qǐng)選擇租賃方式").setOptionList(mListLeaseMode).setItemGravity(Gravity.CENTER).setLastColor(0xFF40B64A).show();dialog.setOnOptionItemSelectListener(new OnOptionItemSelectListener() {@Overridepublic void onSelect(int position, CharSequence option) {et_Leasemode.setText(mListLeaseMode.get(position));switch (position) {case 0:ZLFS = "02";break;case 1:ZLFS = "01";break;}dialog.dismiss();}});}public void getData(){Log.i("TAG","getData");HZQ = sp_xzq_template.getText().toString();JZ = sp_jd_template.getText().toString();JLX = auto_tv_house01_template.getText().toString();MLP = sp_mlp_template.getText().toString();XZ = et_Address_template.getText().toString();ZG = tv_house_reg01_zg_template.getText().toString();AH = et_ah_template.getText().toString();CQZH = et_hnum_template.getText().toString();CQMJ = et_house_regist_cqmj_template.getText().toString();Log.i("TAG","getData"+HZQ+JZ+MLP+XZ+ZG+AH+CQZH+CQMJ);YZXM = et_name_template.getText().toString();GJDQ = tv_hreg01_nation_template.getText().toString();ZJLX = tv_hreg01_zjlx_template.getText().toString();SFZH = et_cardnum_template.getText().toString();YZDH = et_call_template.getText().toString();Log.i("TAG","getData"+YZXM+GJDQ+ZJLX+SFZH+YZDH);FBBT = et_reg_title.getText().toString();LPDZ = et_housesaddress.getText().toString();FWYT = sp_fwyt.getText().toString();CX = et_oritation.getText().toString();LDXZ = et_house_info.getText().toString();ZLC = et_house_gylc.getText().toString();floor = et_storey.getText().toString();ZXCD = et_fixinfo.getText().toString();CZMJ = et_acreage.getText().toString();HXS = et_shi.getText().toString();Log.i("TAG","getData"+FBBT+LPDZ+FWYT+CX+LDXZ+ZLC+floor+PZLTHY+ZXCD+HXS);FYMS = et_describe.getText().toString();ZJZFFS = et_paymethod.getText().toString();ZJ = et_rent.getText().toString();ZLFS = et_Leasemode.getText().toString();Log.i("TAG","getData"+FYMS+ZJZFFS+ZJ+ZLFS);PZS = shui_reg.getText().toString();PZD = dian_reg.getText().toString();PZNQ =lanqi_reg.getText().toString();PZKD = kuandai_reg.getText().toString();PZDT = dianti_reg.getText().toString();PZDS = dianshi_reg.getText().toString();PZMQ = meiqi_reg.getText().toString();PZLTHY = lutai_reg.getText().toString();PZCWCK = chewei_reg.getText().toString();PZCCSDXS = ccroom_reg.getText().toString();Log.i("TAG","getData"+PZS+PZD+PZNQ+PZKD+PZDT+PZDS+PZMQ+PZLTHY+PZCWCK+PZCCSDXS);PZC = chuang_reg.getText().toString();PZDH = dianhua_reg.getText().toString();PZKT = kongtiao_reg.getText().toString();PZBX = bingxiang_reg.getText().toString();PZCJ = chuju_reg.getText().toString();PZJJ = jiaju_reg.getText().toString();PZWBL = weibolu_reg.getText().toString();PZXYJ = xiyiji_reg.getText().toString();PZRSQ = reshuiqi_reg.getText().toString();Log.i("TAG","getData"+PZC+PZDH+PZKT+PZKT+PZBX+PZCJ+PZJJ+PZWBL+PZXYJ+PZRSQ);}private void JudgeUserInputData(){getData();getCbData();if (isNotEmpty(HZQ) && isNotEmpty(ZJ) && isNotEmpty(ZLC) && isNotEmpty(JLX) && isNotEmpty(MLP) && isNotEmpty(XZ) && isNotEmpty(FBBT) && isNotEmpty(YZDH)){houseInfo.setUSERID(userId);houseInfo.setSJLY(type);Log.i("JudgeUserInputData","JudgeUserInputData"+HZQ+JZ+MLP+XZ+ZG+AH+CQZH+CQMJ);Log.i("JudgeUserInputData","JudgeUserInputData"+PZC+PZDH+PZKT+PZKT+PZBX+PZCJ+PZJJ+PZWBL+PZXYJ+PZRSQ);houseInfo.setHZQ(HZQ); //行政區(qū)houseInfo.setJZ(JZ); //街鎮(zhèn)houseInfo.setJLX(JLX); //街道houseInfo.setMLP(MLP);//門樓牌houseInfo.setXZ(XZ);//詳細(xì)地址houseInfo.setZG(ZG);//字軌houseInfo.setAH(AH);//案號(hào)houseInfo.setCQZH(CQZH);//產(chǎn)權(quán)證號(hào)houseInfo.setCQMJ(Double.valueOf(CQMJ));//產(chǎn)權(quán)面積houseInfo.setYZXM(YZXM); //產(chǎn)權(quán)人姓名houseInfo.setGJDQ(GJDQ);//國(guó)籍地區(qū)houseInfo.setZJLX(ZJLX); //證件類型houseInfo.setSFZH(SFZH); //證件號(hào)碼houseInfo.setYZDH(Long.valueOf(YZDH)); //手機(jī)號(hào)碼houseInfo.setFBBT(FBBT); //標(biāo)題houseInfo.setLPDZ(LPDZ); //樓盤地址houseInfo.setFWYT(FWYT); //房屋用途houseInfo.setCX(CX); //朝向houseInfo.setLDXZ(LDXZ); //樓棟性質(zhì)houseInfo.setZLC(Integer.valueOf(ZLC)); //樓層總數(shù)houseInfo.setZXCD(ZXCD);//裝修程度houseInfo.setCZMJ(Double.valueOf(CZMJ)); //租住面積//houseInfo.setHXS(); //戶型houseInfo.setHXT(Integer.valueOf(ting)); //廳houseInfo.setHXS(Integer.valueOf(shi)); //室houseInfo.setHXC(Integer.valueOf(chu)); //廚houseInfo.setHXW(Integer.valueOf(wei)); //衛(wèi)houseInfo.setJZ(ZJ); //租金houseInfo.setFYMS(FYMS); //房源描述houseInfo.setZJZFFS(ZJZFFS); //支付方式houseInfo.setZLFS(ZLFS);//租賃方式AnalysisIntoJson(); //將houseInfo解析成json數(shù)據(jù),發(fā)送到后臺(tái)//StartAction(); //保存模版后,返回模版列表}else{if (isEmpty(HZQ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)選擇行政區(qū)");return;}if (isEmpty(JZ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)選擇街道");return;}if (isEmpty(JLX)) {ToastUtil.ToastDemo(template.this, "請(qǐng)選擇街路巷");return;}if (isEmpty(MLP)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚戦T樓牌");return;}if (isEmpty(XZ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懺敿?xì)地址");return;}if (isEmpty(CQMJ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懏a(chǎn)權(quán)面積");return;}if (isEmpty(YZXM)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懏a(chǎn)權(quán)人姓名");return;}if (nationCode == null) {ToastUtil.ToastDemo(template.this, "請(qǐng)選擇國(guó)籍地區(qū)");return;}if (isEmpty(ZJLX)) {ToastUtil.ToastDemo(template.this, "請(qǐng)選擇證件類型");return;}if (isEmpty(SFZH)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懽C件號(hào)碼");return;}if ( isEmpty(YZDH)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懸苿?dòng)手機(jī)號(hào)碼");return;}if (isEmpty(FBBT)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懓l(fā)布標(biāo)題");return;}if (isEmpty(LPDZ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚憳潜P地址");return;}if (isEmpty(FWYT)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懛课萦猛?#34;);return;}if (isEmpty(CX)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懗?#34;);return;}if (isEmpty(LDXZ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚憳菞澬再|(zhì)");return;}if (isEmpty(ZLC)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懝灿袠菍?#34;);return;}if (isEmpty(floor)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懰鶎贅菍?#34;);return;}if (isEmpty(ZXCD)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懷b修程度");return;}if (isEmpty(CZMJ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懗鲎饷娣e");return;}if (isEmpty(HXS)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚憫粜?#34;);return;}if (isEmpty(ZJ)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懽饨?#34;);return;}if (!PhoneFormatCheckUtils.isPhoneLegal(SFZH)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懻_的移動(dòng)手機(jī)");return;}if (ZJ.equals("01")) {if (!CheckIdCard.isValidatedAllIdcard(SFZH)) {ToastUtil.ToastDemo(template.this, "請(qǐng)?zhí)顚懻_的身份證號(hào)");return;}}}}/*** 將houseInfo解析成json數(shù)據(jù),發(fā)送到后臺(tái)*/private void AnalysisIntoJson(){mProgressHUD = ProgressHUD.show(template.this, "請(qǐng)稍等", false, false, null);MultipartBody.Builder mbody = new MultipartBody.Builder().setType(MultipartBody.FORM);Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd").create();String json = gson.toJson(houseInfo);mbody.addFormDataPart("house", json);System.out.println("房屋的json===" + json);RequestBody requestBody = mbody.build();okhttp3.Request request = new okhttp3.Request.Builder().header("Authorization", "Client-ID " + "...").url(HttpUtils.TEMPLATE_URL).post(requestBody).build();new OkHttpClient().newCall(request).enqueue(new Callback() {@Overridepublic void onFailure(Call call, IOException e) {mProgressHUD.dismiss();}@Overridepublic void onResponse(Call call, okhttp3.Response response) throws IOException {mProgressHUD.dismiss();runOnUiThread(new Runnable() {@Overridepublic void run() {Toast.makeText(template.this,"新增一個(gè)模板!",Toast.LENGTH_SHORT).show();}});Intent intent = new Intent(template.this, TemplateListActivity.class);startActivity(intent);EventBus.getDefault().post("FLAG_FINISH_ALL");finish();}});}/*** 保存模版后,返回模版列表*/private void StartAction(){Intent intent = new Intent(template.this, TemplateListActivity.class);intent.putExtra("houseInfo", houseInfo);startActivity(intent);}/*** is not null* @param s* @return*/private boolean isNotEmpty(String s) {if (s != null && !s.equals("") || s.length() > 0) {return true;}else {return false;}}private boolean isEmpty(String s) {if (isNotEmpty(s)) {return false;}else {return true;}}/*** 監(jiān)聽返回鍵* @param keyCode 鍵* @param event 事件* @return*/@Overridepublic boolean onKeyDown(int keyCode, KeyEvent event) {if (keyCode == KeyEvent.KEYCODE_BACK) {final WarningDialog dialog = SmartisanDialog.createWarningDialog(template.this);dialog.setTitle("您信息尚未填寫完整,確定退出嗎?").setConfirmText("退出").show();dialog.setOnConfirmListener(new WarningDialog.OnConfirmListener() {@Overridepublic void onConfirm() {Intent intent = new Intent(template.this,TemplateListActivity.class);startActivity(intent);finish();dialog.dismiss();}});}return super.onKeyDown(keyCode, event);}@Overrideprotected void onDestroy() {super.onDestroy();EventBus.getDefault().unregister(this);}}

轉(zhuǎn)載于:https://www.cnblogs.com/chenxiaoyan/p/7909857.html

總結(jié)

以上是生活随笔為你收集整理的android - 房源登记模版的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。

人人爱人人做人人爽 | 亚洲综合色激情五月 | 992tv人人网tv亚洲精品 | 国产乱码精品一区二区蜜臀 | 国产亚洲免费的视频看 | 香蕉视频在线观看免费 | 亚洲视频综合 | 日本三级吹潮在线 | 亚洲精品美女久久久久网站 | 成年人在线观看网站 | 国产又粗又猛又黄又爽 | av 一区 二区 久久 | 色网站视频 | 在线观看av麻豆 | 久久国产剧场电影 | 五月天久久综合 | 日韩三级久久 | 国外av在线 | 麻豆精品在线 | 久久久高清视频 | 日日夜夜人人精品 | 激情五月婷婷丁香 | 免费一级特黄录像 | 一级特黄av | 久久理论视频 | 国产麻豆精品95视频 | 在线观看精品黄av片免费 | 成人av中文字幕在线观看 | 91中文字幕一区 | 最近中文字幕高清字幕在线视频 | 欧美日韩不卡在线视频 | 国产九九在线 | 在线观看免费 | 99在线热播精品免费99热 | 色狠狠一区二区 | 97视频网址 | 在线观看激情av | 久久99精品久久久久蜜臀 | 亚洲天堂va | 国产在线视频导航 | 久草在线 | 国产裸体永久免费视频网站 | 免费看在线看www777 | 亚洲精品理论片 | 香蕉视频在线观看免费 | 欧美乱大交 | 97操碰 | 很黄很污的视频网站 | 国产黄色一级大片 | 亚洲少妇激情 | 手机av资源 | 欧美va天堂va视频va在线 | 亚洲国产色一区 | 亚洲精品美女久久久久 | 久久久久久欧美二区电影网 | 狠狠色丁香婷婷综合最新地址 | 日韩欧在线 | 99精品久久只有精品 | 国产无套精品久久久久久 | 五月天激情综合网 | av免费网站观看 | 美州a亚洲一视本频v色道 | 西西4444www大胆无视频 | 99re久久资源最新地址 | 久久精品毛片 | 综合网伊人 | 色婷婷国产 | 丁香花中文在线免费观看 | 欧美日一级片 | 免费在线国产视频 | 亚洲另类人人澡 | 久久99精品热在线观看 | www.狠狠插.com| 色国产精品 | 国产h在线播放 | 99 视频 高清 | 国产第页 | 免费成视频 | 免费在线观看av片 | 五月天丁香 | 国产精品国产三级国产不产一地 | 欧美激情精品久久久久久免费印度 | 日韩有码在线观看视频 | jizz欧美性9 国产一区高清在线观看 | 亚洲国产高清视频 | 狠狠操综合 | 亚洲人成网站精品片在线观看 | 69久久久久久久 | 一区二区三区四区免费视频 | 伊香蕉大综综综合久久啪 | 伊人开心激情 | 久久综合九色综合欧美狠狠 | 天天爽天天射 | 青春草免费视频 | 国产精品免费在线 | 一级免费观看 | 色婷婷视频在线观看 | 日日夜夜91| 不卡av在线| 免费观看国产视频 | 中文字幕一二三区 | 国产流白浆高潮在线观看 | 2023av| 男女精品久久 | 91精品国产九九九久久久亚洲 | 91 在线视频 | 日韩欧美视频在线观看免费 | 黄色国产精品 | 超碰在线94 | 国产又黄又爽又猛视频日本 | 国产精品高潮呻吟久久久久 | 久久久久网站 | 久久精品直播 | 在线看片成人 | 在线亚洲小视频 | 日本夜夜草视频网站 | 日韩欧美一区二区三区在线观看 | 三级av免费 | 国产亚洲精品久久久久久久久久 | 在线观看小视频 | 中文av字幕在线观看 | 日日躁你夜夜躁你av蜜 | 亚洲女在线 | 三级黄色在线观看 | 又黄又刺激的视频 | 成人在线免费视频 | 亚洲国产午夜视频 | www.狠狠色 | 天天操夜操 | 婷婷国产v亚洲v欧美久久 | 激情欧美在线观看 | 黄色在线观看www | 婷婷精品在线视频 | 国产999精品久久久久久绿帽 | a级国产乱理伦片在线播放 久久久久国产精品一区 | 国产手机免费视频 | 中文字幕国产在线 | 天海翼一区二区三区免费 | 日韩免费福利 | 337p欧美| 国产日韩欧美在线免费观看 | wwwwwww色| 婷婷国产一区二区三区 | 中文字幕在线观看你懂的 | www欧美日韩 | .国产精品成人自产拍在线观看6 | 久艹在线免费观看 | 免费在线观看av片 | 亚州视频在线 | 国产视频在线观看一区 | 深夜福利视频一区二区 | 国产精品高潮呻吟久久av无 | 日韩美在线 | 免费看片成人 | 亚洲h在线播放在线观看h | 亚洲成人资源 | 免费色黄 | 香蕉在线观看 | 亚洲精品高清在线 | 国产一在线精品一区在线观看 | 日韩视频一区二区在线观看 | 午夜黄色一级片 | 久久伦理网 | 欧美日韩国产精品一区二区三区 | 最近中文字幕完整视频高清1 | 色视频一区 | 日韩黄色软件 | 欧美激情奇米色 | 91午夜精品 | 中文字幕第一页在线 | 91中文字幕永久在线 | 久久精品一区八戒影视 | 久草在线免费新视频 | ,午夜性刺激免费看视频 | 在线观看黄色国产 | 不卡中文字幕在线 | 日本不卡一区二区 | 91看片在线播放 | 亚洲欧美日韩国产一区二区三区 | 欧美日韩不卡一区二区三区 | 精品久久一区 | 999视频在线播放 | 日韩高清精品一区二区 | 9i看片成人免费看片 | 欧美日韩观看 | 欧洲色综合 | 日韩xxx视频| 日本中文字幕久久 | 东方av免费在线观看 | 久久精品电影院 | 九色琪琪久久综合网天天 | 亚洲久草在线视频 | 美女网站在线免费观看 | 中文字幕高清免费日韩视频在线 | 欧美中文字幕久久 | 亚洲成色777777在线观看影院 | 在线亚洲高清视频 | 国产一区二区在线精品 | 黄色aaa级片 | 色综合天天综合网国产成人网 | 欧美精品中文 | 中文字幕一区二区三区四区视频 | 婷婷性综合 | 99这里只有精品视频 | 久久久国产影院 | 国色天香永久免费 | 欧美成人精品欧美一级乱 | 激情综合网五月婷婷 | 亚洲国产人午在线一二区 | 天天骚夜夜操 | 丁香花在线视频观看免费 | av成人亚洲 | www.xxxx变态.com| 国产精品爽爽爽 | 中文字幕一区二区三区四区 | 麻豆小视频在线观看 | 中文字幕丝袜美腿 | 奇米影视777四色米奇影院 | 欧美亚洲国产一卡 | 久久久影片 | 夜色资源站wwwcom | 夜夜操狠狠操 | 玖玖视频在线 | 黄污视频网站大全 | 国产黄色精品在线观看 | 亚洲精品456在线播放乱码 | 欧美日韩不卡在线观看 | 久久久蜜桃一区二区 | 91av九色| 果冻av在线| 五月天久久久久久 | 亚洲专区中文字幕 | 久久这里只有精品1 | 国产精品久久视频 | 国产偷v国产偷∨精品视频 在线草 | 久久99久久99精品免观看软件 | 国产精品99爱 | 黄色三级在线 | 免费视频久久久久久久 | 国产精品久久久久久久久久了 | 日韩欧美亚洲 | aaa日本高清在线播放免费观看 | 亚洲成人黄色网址 | 91丨porny丨九色 | 亚洲a资源 | 麻豆视频在线播放 | 99精品国自产在线 | 国产中年夫妇高潮精品视频 | 久久精品欧美一 | 亚洲精品网页 | 97超碰在线免费观看 | 亚洲综合在线发布 | 中文字幕视频网 | 欧美性生活一级片 | 在线电影日韩 | 在线一二三四区 | 一区二区三区四区五区在线 | 国产裸体无遮挡 | 美女啪啪图片 | 人人干,人人爽 | 精产嫩模国品一二三区 | 免费高清在线观看电视网站 | 欧洲黄色片 | 亚洲欧洲日韩在线观看 | 最新一区二区三区 | 激情欧美丁香 | 亚洲一区二区三区四区在线视频 | 日韩欧美高清在线观看 | 天天干天天操av | 久久tv视频 | 99免费看片| 久久国产三级 | 日日夜夜天天人人 | 国产午夜精品视频 | 98超碰在线| 三级黄色免费 | 日韩免费av片 | 成人av一区二区兰花在线播放 | 在线观看岛国av | 国产精品99久久久精品免费观看 | 久久婷亚洲五月一区天天躁 | 自拍超碰在线 | 亚洲少妇影院 | 色婷婷www | 久久黄色网页 | 伊人色综合久久天天网 | 伊人官网 | 国产精品久久久久av免费 | 亚洲精品美女免费 | 久久久久久电影 | 97av在线视频免费播放 | 91九色视频在线播放 | 久久在线视频在线 | 激情丁香综合 | 免费视频一区 | 黄网站色视频免费观看 | 99性视频 | 亚洲精品网址在线观看 | 在线电影 一区 | 欧美永久视频 | 亚洲人xxx | 久久 国产一区 | 精品国产电影一区二区 | 国产精品毛片久久蜜 | 在线日本看片免费人成视久网 | 国产高清不卡一区二区三区 | 成人a视频片观看免费 | 97国产人人| 亚洲国产中文字幕在线 | 免费网址在线播放 | av片在线观看免费 | 97碰在线视频 | 久久不射电影网 | 天天干天天做天天爱 | 国产高清在线 | 91女人18片女毛片60分钟 | 亚洲男男gaygay无套同网址 | 午夜精品久久久久久久99热影院 | www.狠狠| 亚洲三级在线播放 | 国产精品美女 | 在线精品亚洲 | 国产一区二区精品91 | 欧美精品久久久久久 | 日韩欧美网站 | 亚洲成人av一区 | 在线日韩精品视频 | 国产剧情一区在线 | 狠狠插天天干 | 996久久国产精品线观看 | 色综合天天狠狠 | 国产小视频在线看 | 五月婷婷,六月丁香 | av在线h| 人人草人人草 | 日韩久久精品一区二区三区下载 | a级国产乱理伦片在线观看 亚洲3级 | 99精品国产一区二区三区麻豆 | 97视频免费在线看 | 午夜av在线播放 | 精品在线观看一区二区三区 | 麻豆免费在线播放 | 国产精品久久久精品 | 国产中文字幕一区二区 | 激情av一区二区 | 成人久久久精品国产乱码一区二区 | 国产精品免费久久久久久 | 色www精品视频在线观看 | 国产一级二级三级在线观看 | av动图| 婷婷丁香六月天 | 久久久久久高潮国产精品视 | 色综合久久久久久久久五月 | 久久精品视频一 | 亚洲国产三级在线 | 粉嫩av一区二区三区四区五区 | 日韩精品五月天 | 免费观看一区二区三区视频 | 人人要人人澡人人爽人人dvd | 国产 一区二区三区 在线 | 免费看黄的视频 | 在线不卡视频 | 91av手机在线观看 | 亚洲国产午夜 | 日日操日日干 | 久久a级片 | 97热在线观看 | 天天做天天爱天天综合网 | 成人在线播放av | 99热日本| 国产成人一区二区三区久久精品 | 久久久一本精品99久久精品 | 天天操天天色天天射 | 日韩欧美国产免费播放 | 免费日韩一区二区三区 | 色综合天天视频在线观看 | 久久在线免费观看 | 中文字幕国产一区 | 国产精品久久久久一区二区三区 | 黄色毛片一级 | 九九九九九国产 | 蜜臀av麻豆| 99性视频| 亚洲激情视频在线 | 婷婷午夜天 | 国产片免费在线观看视频 | 91网页版在线观看 | 久久久久久久国产精品 | 狠狠gao | 亚洲精品麻豆视频 | 欧美国产大片 | 97精品久久 | a在线观看国产 | 在线国产中文字幕 | 日韩美女免费线视频 | 国产一区二区精品久久 | 国产流白浆高潮在线观看 | 狠狠躁日日躁夜夜躁av | 国产视频97| 亚洲最大av | 国产精品不卡在线观看 | 99精品国产一区二区三区不卡 | 综合色狠狠 | 色欧美成人精品a∨在线观看 | 黄色大片av | 亚洲午夜激情网 | 91在线区 | 婷婷精品国产一区二区三区日韩 | 91精品国产乱码久久 | 成人黄色av网站 | 久久国产一区二区 | 一区二区三区电影 | 黄色大片日本 | 一级α片免费看 | 久久99网站 | 人九九精品 | 国产美女网站在线观看 | 成人高清av在线 | 成人a免费看 | 香蕉影视 | 国产91精品看黄网站在线观看动漫 | 91在线免费播放 | www.超碰97.com | av东方在线 | 国产精品成人自产拍在线观看 | 婷婷六月中文字幕 | 一二区电影| 在线免费观看黄 | 91精品办公室少妇高潮对白 | 久久视频精品在线 | 精品国产伦一区二区三区观看说明 | 国内精品久久久久久久影视简单 | 午夜av影院 | 国产精品久久久久久久久久久久冷 | 久久精品波多野结衣 | 午夜精品视频免费在线观看 | 日韩国产精品久久久久久亚洲 | 亚洲伊人色 | 精品久久久久久久久久久久 | 中文字幕在线观看免费高清电影 | 欧美激精品 | 国产成人精品久 | 久久电影网站中文字幕 | 亚洲乱亚洲乱亚洲 | 中文字幕乱偷在线 | 伊人久在线 | 午夜在线观看一区 | 97电影网手机版 | 91手机在线看片 | 精品99视频| 国产又粗又猛又爽又黄的视频先 | 亚洲国产成人高清精品 | 99久久精品国产免费看不卡 | 黄色在线小网站 | 日本h视频在线观看 | 国产精品欧美一区二区三区不卡 | 中文国产在线观看 | 免费看的黄色网 | 一区二区三区久久精品 | 国内精品免费久久影院 | 亚洲精品国产精品国 | 亚洲国产精品久久久久久 | 久久精品欧美一区 | 99视频在线免费播放 | 久久久久色 | 日韩欧美在线高清 | 成人av在线观 | 一级免费看 | 99久久激情 | 亚洲国产精品一区二区久久,亚洲午夜 | 99精品乱码国产在线观看 | 亚洲午夜精品福利 | 免费精品在线观看 | 四虎影视精品永久在线观看 | 在线视频观看成人 | 亚洲午夜久久久综合37日本 | 久久国产精品一国产精品 | 韩国一区二区三区在线观看 | 9在线观看免费 | 精品国产_亚洲人成在线 | 91大神精品视频在线观看 | 欧美成人xxxxxxxx| 99久e精品热线免费 99国产精品久久久久久久久久 | 亚洲国产三级在线 | 中文字幕一区二区三区精华液 | 国产人在线成免费视频 | 成人久久| 国产一级不卡毛片 | 亚洲国产人午在线一二区 | av在线日韩 | 69av免费视频 | 九九在线精品视频 | 国产麻豆传媒 | 欧美一级黄色视屏 | 九九热只有精品 | 免费瑟瑟网站 | 日本中文字幕在线一区 | www.久久精品视频 | 久久国产精品99久久久久久丝袜 | 狠狠干天天 | 国产精品久久久久久久久久ktv | 日韩女同一区二区三区在线观看 | 国产大片免费久久 | 中文字幕在线成人 | 欧美日韩一区二区视频在线观看 | 免费三级黄色片 | 久久精品99国产精品 | 深爱激情五月综合 | 人人玩人人添人人澡超碰 | 一级做a爱片性色毛片www | 六月激情久久 | 一区二区三区 亚洲 | 国产五月天婷婷 | 97成人精品视频在线观看 | 97在线观看免费高清完整版在线观看 | 国产精品欧美一区二区 | 最近中文字幕在线播放 | 91av在线看 | 91热视频在线观看 | 亚洲国产电影在线观看 | 国产免费观看av | 久艹视频免费观看 | 亚洲精品久 | 国产99久久九九精品免费 | 日本午夜在线观看 | 国产精品美女久久久网av | 亚洲精品一区二区久 | 成人毛片在线观看 | 欧美精品免费视频 | 四虎在线永久免费观看 | 激情欧美日韩一区二区 | 亚洲夜夜网 | 97在线播放视频 | 欧美精品国产精品 | 天堂v中文| 中文一区在线观看 | 日日干日日色 | 亚洲va欧美va人人爽春色影视 | 91免费视频国产 | 国内视频 | 一区二区中文字幕在线播放 | 欧美在线91| 国产亚洲一区二区三区 | 91看片淫黄大片一级在线观看 | 免费观看十分钟 | 国产成人一区二 | 日韩av在线不卡 | 久久久香蕉视频 | 极品久久久久 | 久久久久久久久影院 | 人人添人人澡 | 天天操网址 | 国产高清在线不卡 | 激情五月播播久久久精品 | 日韩av一区二区三区 | 国产理论免费 | 久久视频免费观看 | 精品欧美一区二区三区久久久 | 精品电影一区二区 | 黄色一级在线观看 | 久久乐九色婷婷综合色狠狠182 | 午夜影院一级 | 西西444www| 国内久久| 国产免费人成xvideos视频 | 国产在线2020 | 狠狠干综合网 | 久久精品视频免费播放 | 久久国语露脸国产精品电影 | 奇米导航 | 国内久久精品视频 | 四虎影视成人永久免费观看亚洲欧美 | 亚洲精品大全 | 色av资源网 | 久久97久久97精品免视看 | 亚洲五月花 | 中文字幕 婷婷 | 香蕉视频在线观看免费 | 精品视频在线免费观看 | 开心激情五月网 | 欧美精品久久久久久久亚洲调教 | 色偷偷888欧美精品久久久 | 97色在线观看免费视频 | 久久精品视频2 | 亚洲精品视频在线免费播放 | 久久久资源 | 欧美一级片免费播放 | 亚洲精品视频在线观看视频 | 免费av电影网站 | 精品国产99国产精品 | 久久国产成人午夜av影院宅 | 五月婷婷中文网 | av中文字幕av | 香蕉97视频观看在线观看 | 久久精品久久精品久久精品 | 91av在线精品 | www日韩| 国产精品美女在线观看 | 国产一区福利在线 | 国产黄色免费电影 | 日韩精品一区二区三区免费视频观看 | 91丨九色丨高潮丰满 | 免费看污黄网站 | 在线观看完整版 | 亚洲精品久久久久58 | 69久久久久久久 | 天天天色综合 | 欧美日韩不卡一区二区 | 久9在线| 免费观看一区二区三区视频 | 黄色软件网站在线观看 | 欧美肥妇free | 国产视频日本 | 玖玖玖国产精品 | 91最新国产| 97视频入口免费观看 | 黄色中文字幕在线 | 日韩精品国产一区 | 9久久精品| 亚洲jizzjizz日本少妇 | 97国产超碰 | 婷婷色中文 | 97超碰在线免费 | 欧美激情奇米色 | 在线视频一区二区 | 91一区二区三区在线观看 | 香蕉在线观看 | 国产 一区二区三区 在线 | av一级在线观看 | 亚洲精品88欧美一区二区 | 免费成人在线视频网站 | 免费在线观看的av网站 | 日本精品小视频 | 久久精品站 | 中文字幕不卡在线88 | 国产中文字幕91 | 亚洲国产一区二区精品专区 | 999视频精品 | 国产成人性色生活片 | 99精品福利视频 | 国产精品综合在线观看 | 中文字幕在线观看你懂的 | 日韩最新中文字幕 | 丁香激情综合久久伊人久久 | 丁香亚洲 | 在线欧美国产 | 日日日爽爽爽 | 在线高清av | 久久久久久久久久久久久影院 | 亚洲精品国偷自产在线91正片 | 91综合色 | av高清一区二区三区 | 伊人色综合久久天天 | 精品国产乱码久久久久久三级人 | 91一区啪爱嗯打偷拍欧美 | 又黄又色又爽 | 欧美色精品天天在线观看视频 | 免费网站v | 又黄又刺激视频 | 91.精品高清在线观看 | 探花系列在线 | 欧美日韩精品久久久 | 亚洲性xxxx | 国产1区在线观看 | 九九99 | 午夜视频一区二区 | 色美女在线 | 欧美精品乱码久久久久久 | 亚洲日韩中文字幕 | 亚洲黄色免费网站 | 日韩精品久久一区二区三区 | 久久av免费 | 又紧又大又爽精品一区二区 | 中文字幕日韩伦理 | 中文字幕精品一区二区精品 | 欧美一级久久久久 | 亚洲成人午夜av | 日本精品小视频 | 婷婷六月中文字幕 | 天天激情在线 | 国产91精品久久久久久 | 1区2区3区在线观看 三级动图 | 国产精品99久久久久的智能播放 | www国产在线 | 国产成人av片 | 婷婷色视频 | 免费av视屏| 日本久久成人 | 日日干精品 | 午夜视频二区 | 欧美日韩精品免费观看视频 | 色综合久久88色综合天天免费 | 二区三区中文字幕 | 久久久三级视频 | 日韩av高清| 丁香影院在线 | 婷婷av综合 | 欧美久久久久久久久久久久 | 国产小视频你懂的 | 91精品国产麻豆国产自产影视 | 色婷婷久久一区二区 | 国产黄色美女 | 中文av日韩 | 久久综合中文字幕 | 尤物九九久久国产精品的分类 | 在线观看你懂的网站 | 国产精品自产拍在线观看 | 亚洲免费一级电影 | 中文字幕a∨在线乱码免费看 | 天天av在线播放 | 97超碰香蕉| 一级特黄av | 亚洲精品国偷拍自产在线观看蜜桃 | 亚洲国产偷 | 99久久精品免费 | av福利在线免费观看 | 免费在线观看国产精品 | 亚洲毛片在线观看. | 国产剧情一区 | 久久综合一本 | 中文字幕一区二区三区在线观看 | 国产精品视频久久久 | 91一区啪爱嗯打偷拍欧美 | 色综合久久综合网 | 日本一区二区高清不卡 | 激情片av| 丁香视频在线观看 | 99精品久久只有精品 | 国产小视频在线观看免费 | 久久男人免费视频 | 久草精品视频在线播放 | 国产亚洲一区二区三区 | 日本中文字幕影院 | 国际精品久久久久 | 欧美久久久久 | 波多野结衣电影一区二区 | 亚洲污视频| 国产黄视频在线观看 | 中日韩欧美精彩视频 | 国产三级视频在线 | 成人免费91 | 欧美资源在线观看 | 999久久国产精品免费观看网站 | 视频在线在亚洲 | 日日夜夜操av| 日韩91精品| 婷婷丁香色综合狠狠色 | 免费日韩一区二区三区 | 韩国av电影在线观看 | 欧美日韩中文字幕在线视频 | 精品一区二区视频 | 激情综合网五月 | 97视频在线播放 | 久草在线一免费新视频 | 九九在线免费视频 | 亚洲精品视频第一页 | 亚洲专区欧美专区 | 欧美成人播放 | 亚洲永久精品视频 | 日韩中文字幕国产 | 亚洲视频久久久久 | 日本黄色免费在线观看 | 在线精品视频在线观看高清 | 久久99视频免费观看 | 91九色视频在线观看 | 99色| 美女国产 | 精品久久久久久国产91 | 国产一区福利在线 | 欧美一区二区三区在线视频观看 | 日韩精品久久久久 | 一区二区精品在线 | 久久综合色一综合色88 | 午夜精品导航 | www激情com| 黄p网站在线观看 | 999久久国精品免费观看网站 | 久久久久久久久久久久久国产精品 | 九色91视频| 成人影片在线免费观看 | 手机av在线免费观看 | 久在线观看视频 | 日韩网站免费观看 | 国产色道 | 欧美日韩精品在线观看 | 中文字幕在线免费观看视频 | 91av在线视频播放 | 亚洲视频久久 | 久久理论片 | 99久久9| 91麻豆精品 | 青草草在线 | 中文字幕2021| 欧美在线视频一区二区三区 | 综合在线色 | 欧美日韩首页 | 在线观看视频一区二区 | 精品国产伦一区二区三区观看说明 | 天天伊人网 | 成人免费影院 | 色婷婷一区| 中文字幕一区在线观看视频 | 午夜精品久久久久久久久久久久久久 | 91精品系列 | 日韩午夜小视频 | 久久精品国产精品亚洲精品 | 色 免费观看 | 日本免费一二三区 | 国产麻豆精品一区二区 | 黄色小网站在线 | 免费毛片一区二区三区久久久 | 亚洲 欧洲av| 久久婷婷色综合 | 午夜av免费| 精品播放| 在线观看色视频 | 亚洲成a人片在线观看网站口工 | 久久精久久精 | 欧美日韩不卡一区 | 中文字幕亚洲不卡 | 成人性生交大片免费观看网站 | 国产在线观看99 | 国产精品麻豆99久久久久久 | 伊人电影在线观看 | 中文字幕av在线不卡 | 国产精品色 | 国产美女被啪进深处喷白浆视频 | 在线观看视频你懂得 | 99精品久久精品一区二区 | 91视频网址入口 | 91精品免费在线视频 | 日韩视频免费播放 | 中文字幕在线免费观看视频 | 成人av免费看 | 色综合天天视频在线观看 | 天天色影院| 久久国产亚洲精品 | 91久久一区二区 | 91麻豆精品国产91久久久无需广告 | 在线www色 | 激情综合网五月激情 | 天天舔天天射天天操 | 99精品国产一区二区三区麻豆 | 99成人免费视频 | 91热在线| 96精品在线 | 91精品一区二区三区久久久久久 | 成年人黄色免费看 | 欧美va天堂va视频va在线 | 国产精品中文字幕在线播放 | 91在线色| 亚洲人片在线观看 | 日本中文字幕在线观看 | 国产精品毛片一区二区在线看 | 美女免费视频黄 | 伊人激情网 | 免费观看国产视频 | 久久艹久久 | 五月天久久久 | 日av免费 | 69欧美视频 | 麻豆91网站 | 麻豆极品 | 国产色婷婷精品综合在线手机播放 | 久久久久久久久国产 | 五月天电影免费在线观看一区 | 玖草影院 | 最新的av网站 | bbbbb女女女女女bbbbb国产 | 国产精品成人a免费观看 | 国产特级毛片aaaaaa高清 | 99国产一区二区三精品乱码 | 麻豆免费在线播放 | 亚洲精品国产精品国 | 亚洲成人精品久久 | 色婷婷免费视频 | 国内精品视频免费 | 香蕉在线影院 | 亚洲视频 视频在线 | 国产亚洲精品中文字幕 | 精品久久久久久久久久岛国gif | 国产精品国产三级国产aⅴ入口 | 亚洲精品tv久久久久久久久久 | 日韩电影中文字幕在线 | 在线免费观看的av网站 | 美女久久99 | 日本不卡123区 | 精品日韩在线 | 精品一区久久 | 日韩中文在线播放 | 中文字幕在线视频第一页 | 人人爽人人爽人人片 | 夜夜躁天天躁很躁波 | 九色精品免费永久在线 | 四虎成人精品永久免费av九九 | 亚洲欧美成人网 | 国产日韩欧美在线一区 | 99精品国产一区二区三区不卡 | 福利视频导航网址 | 九九热在线精品 | 日韩在线电影一区 | 欧美精品一区二区在线播放 | 日韩精品一区二区电影 | 天天插天天爽 | 国产在线国偷精品产拍 | 精品国产自 | 久久成人综合 | 黄色a视频免费 | 波多野结衣在线视频免费观看 | 一色av| 亚洲欧美视频网站 | 亚洲精品国精品久久99热 | 热久久视久久精品18亚洲精品 | 一区二区三区手机在线观看 | 五月开心六月伊人色婷婷 | 97天天综合网 | 色综合人人 | 九草在线视频 | 激情五月综合 | 国产精品成人自拍 | 亚洲美女久久 | 国产粉嫩在线观看 | 免费观看丰满少妇做爰 | 玖玖视频在线 | 国产手机精品视频 | 91精品一区二区三区久久久久久 | 一区二区精品久久 | 91夫妻视频| 国产群p视频 | 免费日韩| 婷婷资源站| 久久午夜免费观看 | 在线免费观看国产黄色 | 黄色三级免费观看 | 91精品国自产在线偷拍蜜桃 | 91麻豆国产 | 伊甸园永久入口www 99热 精品在线 | 婷婷色狠狠 | 成人毛片一区 | 亚洲精品在线免费播放 | 91在线最新| 色资源网免费观看视频 | 伊人午夜视频 | www日韩视频 | 美女网站视频免费都是黄 | 在线观看午夜av | 日韩毛片精品 | 激情网站五月天 | 久久与婷婷 | 91香蕉国产在线观看软件 | 麻豆91在线看 | 国产精品久久久久久久久软件 | 97成人在线 | 在线播放一区 | 日日爽视频 | 国产精品激情 | 成人精品福利 | 九九热只有这里有精品 | 99国产高清| 成人在线一区二区三区 | 黄色成人av网址 | 一级片免费视频 | 久草在线免费色站 | 欧洲精品久久久久毛片完整版 | 九九亚洲视频 | 中文字幕刺激在线 | 人人爽人人爽人人片av | 黄色av影视 | 伊人资源视频在线 | 中文成人字幕 | 9i看片成人免费看片 | 精品欧美小视频在线观看 | a黄色片| 午夜私人影院久久久久 | 97超碰福利久久精品 | 午夜久久久影院 | 久久手机精品视频 | 中文字幕在线观看免费高清完整版 | 亚洲少妇久久 | 国产精品久久亚洲 | 久久综合狠狠综合久久激情 | 久草在线视频首页 | 天天爽网站 | 国产精品精品久久久 | 在线观看的av | 国产精品激情偷乱一区二区∴ | 国产亚洲精品久久久久久网站 | 91精品在线视频 | 444av| 亚洲 av网站 | 丝袜护士aⅴ在线白丝护士 天天综合精品 | 亚洲午夜久久久影院 | 国产精品三级视频 | 狠狠操狠狠干天天操 | 成人羞羞免费 | 日韩av有码在线 | www.久草.com| 日韩欧美在线播放 |