Android Google plus login button style

后端 未结 4 2045
后悔当初
后悔当初 2021-01-02 12:00

I need the long style button for google+ signin in android.

According to the Branding guidelines here there are different styles for the button like long, medium, sh

4条回答
  •  佛祖请我去吃肉
    2021-01-02 12:36

    As the website described there are 3 sized button

    1. Icon only = SignInButton.SIZE_ICON_ONLY
    2. Normal button = SignInButton.SIZE_STANDARD
    3. Wide button = SignInButton.SIZE_WIDE

    You can use it like this.

    gSignInButton = (SignInButton) findViewById(R.id.sign_in_button);
    gSignInButton.setOnClickListener(this);
    gSignInButton.setEnabled(true);
    gSignInButton.setSize(SignInButton.SIZE_WIDE);// wide button style
    

提交回复
热议问题