Commit 851815e6 by chengxiuhong

test main

parent 4cd40bb4
......@@ -69,12 +69,18 @@ public class AfterTestDialog extends Dialog{
mFinishTv= (TextView) findViewById(R.id.finish_test);
mContinueText = (TextView) findViewById(R.id.tv_after_continue);
mContinueText.setVisibility(isShowContinueText?View.VISIBLE:View.GONE);
// mContinueText.setVisibility(isShowContinueText?View.VISIBLE:View.GONE);
mContinueText.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(myListener != null){
myListener.onContinue();
if (isShowContinueText){
if(myListener != null){
myListener.onContinue();
}
}else {
if (myListener != null) {
myListener.onFinish();
}
}
dismiss();
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment