gpt4 book ai didi

android xml标签字符串组合

转载 作者:太空宇宙 更新时间:2023-11-03 13:04:18 26 4
gpt4 key购买 nike

如何连接两个字符串?

<TextView android:text="@string/app_name.@string/app_version" android:layout_height="wrap_content" android:layout_width="fill_parent" android:gravity="center" android:layout_alignParentLeft="true" android:id="@+id/Welcome" android:textSize="34px"></TextView>

android:text="@string/app_name.@string/app_version"

模拟器直接打印了“@string/app_name.@string/app_version”而不是字符串它应该是“APP 1.2”之类的东西

最佳答案

你不能这样做,如果你想在你的 TextView 中使用两个字符串,你必须以编程方式设置文本:

TextView tv = (TextView)findViewById(R.id.welcome);
tv.setText(getString(R.string.app_name) + getString(R.string.app_version));

关于android xml标签字符串组合,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7080834/

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