| @ -0,0 +1,39 @@ | |||
| package com.qhclh.ytzh.work.CatchChicken; | |||
| import android.widget.ListView; | |||
| import com.qhclh.ytzh.R; | |||
| import com.qhclh.ytzh.base.BaseActivity; | |||
| import com.qhclh.ytzh.ui.RefreshLayout; | |||
| import butterknife.BindView; | |||
| /** | |||
| * Created by 青花瓷 on 2018/5/8. | |||
| */ | |||
| public class CCInfosActivity extends BaseActivity { | |||
| @BindView(R.id.rfl_cc) | |||
| RefreshLayout rfl_cc; | |||
| @BindView(R.id.lv_cc) | |||
| ListView lv_cc; | |||
| @Override | |||
| protected int setLayoutId() { | |||
| return R.layout.act_catchchickeninfos; | |||
| } | |||
| @Override | |||
| protected void initView() { | |||
| } | |||
| @Override | |||
| protected void initData() { | |||
| } | |||
| @Override | |||
| protected void initOper() { | |||
| } | |||
| } | |||
| @ -0,0 +1,31 @@ | |||
| package com.qhclh.ytzh.work.CatchChicken; | |||
| import android.view.View; | |||
| import android.view.ViewGroup; | |||
| import android.widget.BaseAdapter; | |||
| /** | |||
| * Created by 青花瓷 on 2018/5/8. | |||
| */ | |||
| public class CCInfosAdapter extends BaseAdapter { | |||
| @Override | |||
| public int getCount() { | |||
| return 0; | |||
| } | |||
| @Override | |||
| public Object getItem(int i) { | |||
| return null; | |||
| } | |||
| @Override | |||
| public long getItemId(int i) { | |||
| return 0; | |||
| } | |||
| @Override | |||
| public View getView(int i, View view, ViewGroup viewGroup) { | |||
| return null; | |||
| } | |||
| } | |||
| @ -0,0 +1,62 @@ | |||
| package com.qhclh.ytzh.work.CatchChicken; | |||
| /** | |||
| * Created by 青花瓷 on 2018/5/8. | |||
| */ | |||
| public class CCInfosBean { | |||
| private long ID; | |||
| private long Domain_ID; | |||
| private String Employee_Name; | |||
| private String BreedFactory_Name; | |||
| private String Employee_HandPhone; | |||
| private String Time; | |||
| public long getID() { | |||
| return ID; | |||
| } | |||
| public void setID(long ID) { | |||
| this.ID = ID; | |||
| } | |||
| public long getDomain_ID() { | |||
| return Domain_ID; | |||
| } | |||
| public void setDomain_ID(long domain_ID) { | |||
| Domain_ID = domain_ID; | |||
| } | |||
| public String getEmployee_Name() { | |||
| return Employee_Name; | |||
| } | |||
| public void setEmployee_Name(String employee_Name) { | |||
| Employee_Name = employee_Name; | |||
| } | |||
| public String getBreedFactory_Name() { | |||
| return BreedFactory_Name; | |||
| } | |||
| public void setBreedFactory_Name(String breedFactory_Name) { | |||
| BreedFactory_Name = breedFactory_Name; | |||
| } | |||
| public String getEmployee_HandPhone() { | |||
| return Employee_HandPhone; | |||
| } | |||
| public void setEmployee_HandPhone(String employee_HandPhone) { | |||
| Employee_HandPhone = employee_HandPhone; | |||
| } | |||
| public String getTime() { | |||
| return Time; | |||
| } | |||
| public void setTime(String time) { | |||
| Time = time; | |||
| } | |||
| } | |||
| @ -0,0 +1,20 @@ | |||
| <?xml version="1.0" encoding="utf-8"?> | |||
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent" | |||
| android:background="@color/greyf4f4f4" | |||
| android:orientation="vertical"> | |||
| <com.qhclh.ytzh.ui.RefreshLayout | |||
| android:id="@+id/rfl_cc" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="match_parent"> | |||
| <ListView | |||
| android:id="@+id/lv_cc" | |||
| android:layout_width="match_parent" | |||
| android:layout_height="wrap_content" | |||
| android:background="@color/white"> | |||
| </ListView> | |||
| </com.qhclh.ytzh.ui.RefreshLayout> | |||
| </LinearLayout> | |||