|
|
@ -1,13 +1,43 @@ |
|
|
package com.qhclh.ytzh.work.productiondailyw; |
|
|
package com.qhclh.ytzh.work.productiondailyw; |
|
|
|
|
|
|
|
|
|
|
|
import android.text.Editable; |
|
|
|
|
|
import android.text.TextWatcher; |
|
|
|
|
|
import android.widget.EditText; |
|
|
|
|
|
|
|
|
import com.qhclh.ytzh.R; |
|
|
import com.qhclh.ytzh.R; |
|
|
import com.qhclh.ytzh.base.BaseFragment; |
|
|
import com.qhclh.ytzh.base.BaseFragment; |
|
|
|
|
|
|
|
|
|
|
|
import butterknife.BindView; |
|
|
|
|
|
|
|
|
/** |
|
|
/** |
|
|
* Created by 青花瓷 on 2017/12/19. |
|
|
* Created by 青花瓷 on 2017/12/19. |
|
|
*/ |
|
|
*/ |
|
|
|
|
|
|
|
|
public class WriteDFragment extends BaseFragment { |
|
|
public class WriteDFragment extends BaseFragment { |
|
|
|
|
|
@BindView(R.id.frag_death) |
|
|
|
|
|
EditText frag_death; |
|
|
|
|
|
@BindView(R.id.frag_eliminate) |
|
|
|
|
|
EditText frag_eliminate; |
|
|
|
|
|
@BindView(R.id.frag_water) |
|
|
|
|
|
EditText frag_water; |
|
|
|
|
|
@BindView(R.id.frag_weight) |
|
|
|
|
|
EditText frag_weight; |
|
|
|
|
|
@BindView(R.id.frag_mint) |
|
|
|
|
|
EditText frag_mint; |
|
|
|
|
|
@BindView(R.id.frag_maxt) |
|
|
|
|
|
EditText frag_maxt; |
|
|
|
|
|
@BindView(R.id.frag_minh) |
|
|
|
|
|
EditText frag_minh; |
|
|
|
|
|
@BindView(R.id.frag_maxh) |
|
|
|
|
|
EditText frag_maxh; |
|
|
|
|
|
@BindView(R.id.frag_minw) |
|
|
|
|
|
EditText frag_minw; |
|
|
|
|
|
@BindView(R.id.frag_maxw) |
|
|
|
|
|
EditText frag_maxw; |
|
|
|
|
|
@BindView(R.id.frag_pressure) |
|
|
|
|
|
EditText frag_pressure; |
|
|
|
|
|
|
|
|
|
|
|
private WriteDActivity activity; |
|
|
@Override |
|
|
@Override |
|
|
protected int setLayout() { |
|
|
protected int setLayout() { |
|
|
return R.layout.frag_daily; |
|
|
return R.layout.frag_daily; |
|
|
@ -15,7 +45,7 @@ public class WriteDFragment extends BaseFragment { |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
protected void initView() { |
|
|
protected void initView() { |
|
|
|
|
|
|
|
|
|
|
|
activity = (WriteDActivity) getActivity(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
@Override |
|
|
@Override |
|
|
|