gpt4 book ai didi

android - 在android中创建另一个字符串xml值文件

转载 作者:行者123 更新时间:2023-11-29 00:53:37 25 4
gpt4 key购买 nike

我想在值文件夹中有另一个 string.xml。

我想将 url 保存在不同的文件中,因此不可编辑。我的计划是在这些文件中有一个默认 url,提交文件并将它们添加到 git ignore。

我尝试在 values 文件夹中创建一个 url.xml 文件并添加以下项目:

<resources>
<item name="device_ip_address" type="string">0.0.0.0</item>
</resources>

我也尝试过使用 strings:

<string name="device_ip_address_key" translatable="false">0.0.0.0</string>

例如,当我尝试在 PreferenceScreen 中获取字符串时,出现编译错误:

<PreferenceScreen
xmlns:app="http://schemas.android.com/apk/res-auto">
<Preference
app:key="@string/device_ip_address_key"
app:title="@string/device_ip_address_title"
app:summary="@url/device_ip_address"
app:defaultValue="@url/device_ip_address"
app:enabled="true"
/>
</PreferenceScreen>

或在 Activity 中:

val myUrl = getString(R.string.device_ip_address)

知道如何实现这一目标吗?谢谢

最佳答案

I've tried creating an url.xml file in the values folder and add the following items:

这段代码非常好。我刚刚将它添加到一个报废项目中,从另一个资源访问该资源没有任何困难:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/device_ip_address"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

...或来自代码:

package com.commonsware.myapplication

import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle

class MainActivity : AppCompatActivity() {

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)

val foo = getString(R.string.device_ip_address)
}
}

But when I try to get the string in the PreferenceScreen for example, I get a compilation error:

没有url 资源类型。使用 @string/device_ip_address

关于android - 在android中创建另一个字符串xml值文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57098455/

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