コード例 #1
0
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.layout_unbind_phone);
    qqName = (TextView) findViewById(R.id.qq_login_text);
    phoneNum = (TextView) findViewById(R.id.phone_login_text);
    hupuName = (TextView) findViewById(R.id.hupu_login_text);
    txtNickName = (TextView) findViewById(R.id.txt_nick_name);
    bindInfo = (TextView) findViewById(R.id.bind_info);
    btn_submit = (Button) findViewById(R.id.btn_submit);

    bindQQ = (Button) findViewById(R.id.btn_qq_bind);
    bindPhone = (Button) findViewById(R.id.btn_phone_bind);

    qqBar = (ProgressBar) findViewById(R.id.qq_Porgress);
    phoneBar = (ProgressBar) findViewById(R.id.phone_Porgress);
    hupuBar = (ProgressBar) findViewById(R.id.hupu_Porgress);

    setOnClickListener(R.id.btn_back);
    setOnClickListener(R.id.layout_account);
    setOnClickListener(R.id.btn_submit);
    setOnClickListener(R.id.layout_phone);
    setOnClickListener(R.id.layout_hupu);
    setOnClickListener(R.id.layout_qq_login);

    setOnClickListener(R.id.btn_qq_bind);
    setOnClickListener(R.id.btn_phone_bind);
    setBindInfo();
  }