提问页面流程优化(还差接口调试)

This commit is contained in:
kehaoyuan
2018-03-23 16:44:09 +08:00
parent dce3a91156
commit 1cf13fc2a1
15 changed files with 709 additions and 278 deletions

View File

@ -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);
}
}