gpt4 book ai didi

Android - 如何在带有 ✔ 的按钮上设置文本颜色作为 Android M 上的文本

转载 作者:行者123 更新时间:2023-11-29 01:20:28 24 4
gpt4 key购买 nike

在安卓 M 上

button.setText("✔");
button.setTextColor(Color.WHITE);

不知道为什么不工作?

我怎样才能得到 ✔ 白色?

最佳答案

尝试这样做,

在你的 xml 文件中,

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@mipmap/ic_launcher"
android:hint="hii" />
</LinearLayout >

现在,在你的 java 文件中添加如下代码

public class SixthActivity extends AppCompatActivity {

Button btn;

@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.first_activity);
btn = (Button) findViewById(R.id.btn);

btn.setText("");
btn.setBackgroundColor(getResources().getColor(R.color.white));
btn.setBackgroundResource(R.mipmap.ic_launcher);
}
}

关于Android - 如何在带有 ✔ 的按钮上设置文本颜色作为 Android M 上的文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37088025/

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