package ezviz.ezopensdkcommon.configwifi;
|
|
import android.content.Intent;
|
import android.graphics.drawable.AnimationDrawable;
|
import android.os.Bundle;
|
import android.view.View;
|
import android.view.View.OnClickListener;
|
import android.widget.Button;
|
import android.widget.ImageView;
|
import android.widget.TextView;
|
|
|
import ezviz.ezopensdkcommon.R;
|
import ezviz.ezopensdkcommon.common.RootActivity;
|
import ezviz.ezopensdkcommon.common.TitleBar;
|
|
public class AutoWifiPrepareStepOneActivity extends RootActivity implements OnClickListener {
|
|
private Button btnNext;
|
private String deviceType;
|
private TextView topTip;
|
private Button btnIntroduce;
|
private ImageView imageBg;
|
private AnimationDrawable aminBg;
|
|
@Override
|
protected void onCreate(Bundle savedInstanceState) {
|
super.onCreate(savedInstanceState);
|
setContentView(R.layout.auto_wifi_prepare_step_on);
|
initTitleBar();
|
initUI();
|
}
|
|
private void initTitleBar() {
|
TitleBar mTitleBar = (TitleBar) findViewById(R.id.title_bar);
|
mTitleBar.setTitle(R.string.auto_wifi_step_one_title);
|
mTitleBar.addBackButton(new OnClickListener() {
|
|
@Override
|
public void onClick(View v) {
|
onBackPressed();
|
}
|
});
|
}
|
|
@Override
|
protected void onResume() {
|
super.onResume();
|
}
|
|
|
private void initUI() {
|
topTip = (TextView) findViewById(R.id.topTip);
|
imageBg = (ImageView) findViewById(R.id.imageBg);
|
btnNext = (Button) findViewById(R.id.btnNext);
|
btnIntroduce = (Button) findViewById(R.id.btnIntroduce);
|
btnNext.setOnClickListener(this);
|
btnIntroduce.setOnClickListener(this);
|
|
topTip.setText(getString(R.string.tip_heard_voice));
|
imageBg.setImageResource(R.drawable.video_camera1_3);
|
btnNext.setText(R.string.autowifi_heard_voice);
|
btnIntroduce.setText(R.string.autowifi_not_heard_voice);
|
}
|
|
@Override
|
public void onClick(View v) {
|
|
Intent intent = null;
|
int id = v.getId();
|
if (id == R.id.btnNext){
|
intent = new Intent(this, AutoWifiNetConfigActivity.class);
|
intent.putExtras(getIntent());
|
startActivity(intent);
|
}else if(id == R.id.btnIntroduce){
|
intent = new Intent(this, AutoWifiResetActivity.class);
|
intent.putExtras(getIntent());
|
startActivity(intent);
|
}
|
// switch (v.getId()) {
|
// case R.id.btnNext:
|
// intent = new Intent(this, AutoWifiNetConfigActivity.class);
|
// intent.putExtras(getIntent());
|
// startActivity(intent);
|
// break;
|
// case R.id.btnIntroduce:
|
// intent = new Intent(this, AutoWifiResetActivity.class);
|
// intent.putExtras(getIntent());
|
// startActivity(intent);
|
// break;
|
// default:
|
// break;
|
// }
|
}
|
|
@Override
|
protected void onDestroy() {
|
if (aminBg != null) {
|
aminBg.stop();
|
aminBg = null;
|
}
|
super.onDestroy();
|
}
|
|
|
}
|