gpt4 book ai didi

android - 我可以在 Google 上编辑登录按钮的文字吗?

转载 作者:IT老高 更新时间:2023-10-28 21:53:12 27 4
gpt4 key购买 nike

我正在将我的应用程序与 google plus 集成。我已经安装了 google play 服务并登录了我的帐户。此外,我可以发布任何我想要的内容并加一个。

我的问题

我无法更改登录按钮的文本。

我的代码

<com.google.android.gms.common.SignInButton
android:id="@+id/share_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Share on Google+" />

我尝试了什么?

  • 首先,我尝试将这一行添加到 xml 中

    android:text="Share on Google+"
  • 其次,我尝试以编程方式设置文本,但没有成功。

任何帮助将不胜感激。

编辑

如果不可能,有什么方法可以让我在另一个按钮上使用相同的 google 登录按钮?

最佳答案

这是我使用的技术:

protected void setGooglePlusButtonText(SignInButton signInButton, String buttonText) {
// Find the TextView that is inside of the SignInButton and set its text
for (int i = 0; i < signInButton.getChildCount(); i++) {
View v = signInButton.getChildAt(i);

if (v instanceof TextView) {
TextView tv = (TextView) v;
tv.setText(buttonText);
return;
}
}
}

关于android - 我可以在 Google 上编辑登录按钮的文字吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18040815/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com