提问页面流程优化(还差接口调试)
This commit is contained in:
@ -0,0 +1,27 @@
|
||||
package com.gh.gamecenter.ask;
|
||||
|
||||
import android.view.View;
|
||||
import android.widget.TextView;
|
||||
|
||||
import com.gh.base.BaseRecyclerViewHolder;
|
||||
import com.gh.base.OnListClickListener;
|
||||
import com.gh.gamecenter.R;
|
||||
import com.gh.gamecenter.ask.entity.AskSearchEntity;
|
||||
|
||||
import butterknife.BindView;
|
||||
|
||||
/**
|
||||
* Created by khy on 23/03/18.
|
||||
*/
|
||||
|
||||
public class QuestionsEditIndexViewHolder extends BaseRecyclerViewHolder<AskSearchEntity> {
|
||||
@BindView(R.id.questions_edit_index_title)
|
||||
TextView mIndexTitle;
|
||||
@BindView(R.id.questions_edit_index_answer_count)
|
||||
TextView mIndexAnswerCount;
|
||||
|
||||
public QuestionsEditIndexViewHolder(View itemView, OnListClickListener listClickListener) {
|
||||
super(itemView, listClickListener);
|
||||
mIndexTitle.setOnClickListener(this);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user