Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is a little initialization of the AlertDialog in Android and a method to verify a user using HttpClient

private void loginBox() {
    USERS = db.getUserData();

    login_layout = (LinearLayout) findViewById(R.id.loginlayout);
    loginLayout = (LinearLayout) View.inflate(this, R.layout.login, null);
    usernameEditText = (EditText) loginLayout.findViewById(R.id.username);
    passwordEditText = (EditText) loginLayout.findViewById(R.id.password);
    rememmber = (CheckBox) loginLayout.findViewById(R.id.checkBox1);
    gallery = (Gallery) loginLayout.findViewById(R.id.users_gallery);
    notificationText = (TextView) loginLayout
            .findViewById(R.id.notificationtext);
    userChooseText = (TextView) loginLayout
            .findViewById(R.id.user_choose_text);
    breakLine = (View) loginLayout.findViewById(R.id.login_break_line);

    registerForContextMenu(loginLayout);

    galleryVisibility();

    gallery.setAdapter(new AddImgAdp(this));

    if (userPrefs.getUserName() == null
            && userPrefs.getUserPassword() == null) {

        if (!USERS.isEmpty()) {

            System.out.println("not empty");
            usernameEditText.setText(
                    USERS.get(gallery.getSelectedItemPosition())
                            .getUsername(), TextView.BufferType.EDITABLE);
            passwordEditText.setText(
                    USERS.get(gallery.getSelectedItemPosition())
                            .getPassword(), TextView.BufferType.EDITABLE);
        }
    }

    gallery.setOnItemLongClickListener(new OnItemLongClickListener() {

        @Override
        public boolean onItemLongClick(AdapterView<?> arg0, View arg1,
                int arg2, long arg3) {
            selectedUser = USERS.get(arg2).getUsername();

            if (!USERS.isEmpty()) {
                System.out.println("not empty");
                usernameEditText.setText(USERS.get(arg2).getUsername(),
                        TextView.BufferType.EDITABLE);
                passwordEditText.setText(USERS.get(arg2).getPassword(),
                        TextView.BufferType.EDITABLE);
            }

            return false;
        }
    });

    gallery.setOnItemSelectedListener(new OnItemSelectedListener() {

        @Override
        public void onItemSelected(AdapterView<?> parent, View view,
                int position, long id) {
            usernameEditText.setText(USERS.get(position).getUsername(),
                    TextView.BufferType.EDITABLE);
            passwordEditText.setText(USERS.get(position).getPassword(),
                    TextView.BufferType.EDITABLE);
        }

        @Override
        public void onNothingSelected(AdapterView<?> parent) {

        }
    });

    // rememmber.setOnClickListener(new View.OnClickListener() {
    //
    // @Override
    // public void onClick(View v) {
    // if (rememmber.isChecked()) {
    // Toast toast = Toast.makeText(getApplicationContext(),
    // "Try to avoid this option, it is unsecure!",
    // Toast.LENGTH_LONG);
    // toast.show();
    //
    // // TODO: store in DB
    // }
    // }
    // });

    Button loginButton = (Button) loginLayout
            .findViewById(R.id.action_login);
    loginButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            username = usernameEditText.getText().toString();

            password = passwordEditText.getText().toString();

            if (rememmber.isChecked()) {
                db.createNewUser(username, password);
            }
            if (testUser()) {
                // gallery.removeAllViewsInLayout();
                username = usernameEditText.getText().toString();

                password = passwordEditText.getText().toString();

                userPrefs.savePrefs(username, password);

                alert.dismiss();
                // alert.cancel();
                // login = null;
                // alert = null;
            } else {
                userPrefs.clearPrefs();

                System.out.println("Gallery children: "
                        + gallery.getChildCount());

                notificationText.setText("Username or password incorrect!");
                notificationText.setTextColor(Color.RED);

                USERS = db.getUserData();

                galleryVisibility();

                ((BaseAdapter) gallery.getAdapter()).notifyDataSetChanged();

                gallery.setSelection(gallery.getCount());
            }

        }
    });

    if (!initialized) {
        System.out.println("Run login box initialization");

        initialized = true;
        login = new AlertDialog.Builder(this);
        login.setView(loginLayout).setTitle("Logon Credentials")
                .setCancelable(false);

        alert = login.create();
        alert.show();
    }
}

private void galleryVisibility() {
    if (USERS.size() < 1) {
        gallery.setEnabled(false);
        gallery.setVisibility(LinearLayout.INVISIBLE);
        breakLine.setEnabled(false);
        breakLine.setVisibility(LinearLayout.INVISIBLE);
        userChooseText.setEnabled(false);
        userChooseText.setVisibility(LinearLayout.INVISIBLE);
    } else {
        gallery.setEnabled(true);
        gallery.setVisibility(LinearLayout.VISIBLE);
        breakLine.setEnabled(true);
        breakLine.setVisibility(LinearLayout.VISIBLE);
        userChooseText.setEnabled(true);
        userChooseText.setVisibility(LinearLayout.VISIBLE);
    }
}

private boolean testUser() {
        System.out.println("Testing user");

        if (usernameEditText.getText().toString()!= null
                && , passwordEditText.getText().toString() != null) {

            try {
                System.out.println("getting viewwstate");
                String viewState = client
                        .httpGetViewstate("http://website/Login.aspx");

                HttpResponse response = client.httpPost1(viewState,
                        "http://website/Login.aspx",
                        usernameEditText.getText().toString(), passwordEditText
                            .getText().toString());
                System.out.println("posted!");

                HttpEntity entity = response.getEntity();
                String responseText = EntityUtils.toString(entity);
                System.out.println(responseText);

                // String commentsHtml = client
                // .httpGet("http://website/PriceTables.aspx");

                // System.out.println(commentsHtml);

                if (responseText.contains("Log Out")) {

                    success = true;
                    System.out.println("username is ok");

                    this.finish();

                    return true;
                } else {
                    System.out.println("back again..");
                    fail = true;
                    // loginBox();
                    return false;
                }
            } catch (SocketTimeoutException socket) {
                System.out.println("login socket timeout");
            } catch (IOException e) {
                System.out.println("Login io exception");
            }
            return false;
        } else {
            // Intent login = new Intent(getApplicationContext(),
            // Login.class);
            // startActivity(login);
            fail = true;
            // loginBox();
            return false;
        }
    }

The problem is that when I click login button for the first time, everything works fine, but when I click it the second time, the testUserMethod, try{ statement is ignored.. Found the problem - again, my own mistake, everything is ok now. Thank you everybody who helped

share|improve this question

2 Answers

Can you check with setCancelable().. you are setting it to true once and again to false...

share|improve this answer
Thank you for this notice, i havent noticed it at beginning.. Java autofill is not a good tool to use. But this is not the case.. The error is somewhere else =) – user849998 Oct 6 '11 at 6:43
But since the box is not cancelable all the time, that means that the last setCancelable matters.. i guess – user849998 Oct 6 '11 at 6:48

It looks like problem isn't here. Maybe, you did some field static?

share|improve this answer
Yeah, I found one problem, it was with the httpClient, more precisely, with httpResponse, now the dialog shows as many time as I want, but I got another problem, gonna change my post with new information – user849998 Oct 6 '11 at 8:02
Once again, check if any field is static. And track how do you save userPrefs and do they load? – QuickNick Oct 6 '11 at 8:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.