xml 登录按钮Facebook Google
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 登录按钮Facebook Google相关的知识,希望对你有一定的参考价值。
<Button
android:id="@+id/loginFacebookButton"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="24dp"
android:background="@drawable/style_facebook_btn_round_corner"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:text="@string/login_with_facebook"
android:textAlignment="center"
android:textAllCaps="false"
android:textColor="@color/white"
android:textSize="@dimen/borderCustomButtonTextSize"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView2"/>
<Button
android:id="@+id/loginGoogleButton"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:background="@drawable/style_google_btn_round_corner"
android:paddingLeft="20dp"
android:paddingRight="20dp"
android:text="@string/login_with_google"
android:textAlignment="center"
android:textAllCaps="false"
android:textColor="@color/grey"
android:textSize="@dimen/borderCustomButtonTextSize"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/loginFacebookButton"/>
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp"
android:layout_marginTop="16dp"
android:gravity="center"
android:orientation="horizontal"
android:textAlignment="center"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@+id/loginGoogleButton">
<View
android:layout_width="120dp"
android:layout_height="2dp"
android:background="@color/white"
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="410dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:text="@string/login_or"
android:textAllCaps="false"
android:textColor="@color/white"
android:textSize="@dimen/borderlessButtonTextSize"/>
<View
android:layout_width="120dp"
android:layout_height="2dp"
android:background="@color/white"/>
</LinearLayout>
以上是关于xml 登录按钮Facebook Google的主要内容,如果未能解决你的问题,请参考以下文章
android google 登录和 facebook 登录按钮看起来完全不同
Pyjnius,用于使用 Kivy 登录按钮的 Facebook/Google SDK
iOS:同时使用 Facebook 和 Google,Google Plus 登录
像 Google SignIn Button 一样设置 Facebook SignIn 按钮高度
取消 Google Play 游戏登录后 Facebook 登录崩溃(反之亦然)
为啥在 google play store 上发布后 google 和 facebook 登录不起作用