INNER CODE UNIT · Java

onFinishInflate

yuliskov/SmartTubeLegacy · browser/src/main/java/com/liskovsoft/browser/AutologinBar.java:42

    protected void onFinishInflate() {
        super.onFinishInflate();
        mAutoLoginAccount = (Spinner) findViewById(R.id.autologin_account);
        mAutoLoginLogin = (Button) findViewById(R.id.autologin_login);
        mAutoLoginLogin.setOnClickListener(this);
        mAutoLoginProgress = (ProgressBar) findViewById(R.id.autologin_progress);
        mAutoLoginError = (TextView) findViewById(R.id.autologin_error);
        mAutoLoginCancel = findViewById(R.id.autologin_close);
        mAutoLoginCancel.setOnClickListener(this);
    }

    public void setTitleBar(TitleBar titleBar) {
        mTitleBar = titleBar;
    }

    @Override
    public void onClick(View v) {
        if (mAutoLoginCancel == v) {

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…