web-dev-qa-db-ja.com

strings.xmlの別の文字列から1つの文字列を参照しますか?

以下のように、strings.xmlファイル内の別の文字列から文字列を参照したいと思います(具体的には、「message_text」文字列コンテンツの終わりに注意してください):

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="button_text">Add item</string>
    <string name="message_text">You don't have any items yet! Add one by pressing the \'@string/button_text\' button.</string>
</resources>

上記の構文を試しましたが、テキストは「@ string/button_text」をクリアテキストとして出力します。私が欲しいものではありません。 「まだアイテムがありません。「アイテムを追加」ボタンを押してアイテムを追加してください。」というメッセージテキストを印刷したいと思います。

私が望むものを達成するための既知の方法はありますか?

根拠:
アプリケーションにはアイテムのリストがありますが、そのリストが空の場合、代わりに「@Android:id/empty」TextViewを表示します。そのTextViewのテキストは、新しい項目を追加する方法をユーザーに通知するためのものです。私は自分のレイアウトを変更に対してフールプルーフにしたいと思います(はい、私は問題のフールです:-)

213
dbm

Javaコードを使用せずにxmlに頻繁に使用される文字列(アプリ名など)を挿入する良い方法: source

    <?xml version="1.0" encoding="utf-8"?>
    <!DOCTYPE resources [
      <!ENTITY appname "MyAppName">
      <!ENTITY author "MrGreen">
    ]>

<resources>
    <string name="app_name">&appname;</string>
    <string name="description">The &appname; app was created by &author;</string>
</resources>

更新:

エンティティをグローバルに定義することもできます(例:

res/raw/entities.ent:

<!ENTITY appname "MyAppName">
<!ENTITY author "MrGreen">

res/values/string.xml:

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE resources [
    <!ENTITY % ents SYSTEM "./res/raw/entities.ent">
    %ents;   
]>

<resources>
    <string name="app_name">&appname;</string>
    <string name="description">The &appname; app was created by &author;</string>
</resources>
209
Beeing Jk

文字列全体が参照名で構成されている限り、相互に参照できます。たとえば、これは動作します:

<string name="app_name">My App</string>
<string name="activity_title">@string/app_name</string>
<string name="message_title">@string/app_name</string>

デフォルト値を設定するのにさらに便利です:

<string name="string1">String 1</string>
<string name="string2">String 2</string>
<string name="string3">String 3</string>
<string name="string_default">@string/string1</string>

これで、コードのあらゆる場所でstring_defaultを使用でき、いつでもデフォルトを簡単に変更できます。

171
Barry Fruitman

できないと思います。ただし、次のように文字列を「フォーマット」できます。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="button_text">Add item</string>
    <string name="message_text">You don't have any items yet! Add one by pressing the %1$s button.</string>
</resources>

コード内:

Resources res = getResources();
String text = String.format(res.getString(R.string.message_text),
                            res.getString(R.string.button_text));
92

Androidでは、xml内で文字列を連結できません

以下はサポートされていません

<string name="string_default">@string/string1 TEST</string>

それを達成する方法を知るには、以下のリンクを確認してください

Android XMLで複数の文字列を連結するには?

32
Mayank Mehta

シンプルなgradle plugin を作成しました。これにより、ある文字列を別の文字列から参照できます。別のファイル、たとえば異なるビルドバリアントやライブラリで定義されている文字列を参照できます。このアプローチの短所-IDEリファクタリングはそのような参照を見つけません。

{{string_name}}構文を使用して、文字列を参照します。

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="super">Super</string>
    <string name="app_name">My {{super}} App</string>
    <string name="app_description">Name of my application is: {{app_name}}</string>
</resources>

プラグインを統合するには、次のコードをアプリまたはライブラリモジュールレベルのbuild.gradleファイルに追加するだけです

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.Android-text-resolver:buildSrc:1.2.0"
  }
}

apply plugin: "com.icesmith.androidtextresolver"

UPDATE:新しいバージョンのプラグインはaapt2を使用するため、ライブラリはAndroid gradleプラグインバージョン3.0以降では動作しません。リソースを.flatバイナリ形式にパックするため、パックされたリソースはライブラリで使用できません。一時的な解決策として、gradle.propertiesファイルでAndroid.enableAapt2 = falseを設定することにより、aapt2を無効にすることができます。

12
Valeriy Katkov

ネストされた文字列を再帰的に解決する独自のロジックを使用できます。

/**
 * Regex that matches a resource string such as <code>@string/a-b_c1</code>.
 */
private static final String REGEX_RESOURCE_STRING = "@string/([A-Za-z0-9-_]*)";

/** Name of the resource type "string" as in <code>@string/...</code> */
private static final String DEF_TYPE_STRING = "string";

/**
 * Recursively replaces resources such as <code>@string/abc</code> with
 * their localized values from the app's resource strings (e.g.
 * <code>strings.xml</code>) within a <code>source</code> string.
 * 
 * Also works recursively, that is, when a resource contains another
 * resource that contains another resource, etc.
 * 
 * @param source
 * @return <code>source</code> with replaced resources (if they exist)
 */
public static String replaceResourceStrings(Context context, String source) {
    // Recursively resolve strings
    Pattern p = Pattern.compile(REGEX_RESOURCE_STRING);
    Matcher m = p.matcher(source);
    StringBuffer sb = new StringBuffer();
    while (m.find()) {
        String stringFromResources = getStringByName(context, m.group(1));
        if (stringFromResources == null) {
            Log.w(Constants.LOG,
                    "No String resource found for ID \"" + m.group(1)
                            + "\" while inserting resources");
            /*
             * No need to try to load from defaults, Android is trying that
             * for us. If we're here, the resource does not exist. Just
             * return its ID.
             */
            stringFromResources = m.group(1);
        }
        m.appendReplacement(sb, // Recurse
                replaceResourceStrings(context, stringFromResources));
    }
    m.appendTail(sb);
    return sb.toString();
}

/**
 * Returns the string value of a string resource (e.g. defined in
 * <code>values.xml</code>).
 * 
 * @param name
 * @return the value of the string resource or <code>null</code> if no
 *         resource found for id
 */
public static String getStringByName(Context context, String name) {
    int resourceId = getResourceId(context, DEF_TYPE_STRING, name);
    if (resourceId != 0) {
        return context.getString(resourceId);
    } else {
        return null;
    }
}

/**
 * Finds the numeric id of a string resource (e.g. defined in
 * <code>values.xml</code>).
 * 
 * @param defType
 *            Optional default resource type to find, if "type/" is not
 *            included in the name. Can be null to require an explicit type.
 * 
 * @param name
 *            the name of the desired resource
 * @return the associated resource identifier. Returns 0 if no such resource
 *         was found. (0 is not a valid resource ID.)
 */
private static int getResourceId(Context context, String defType,
        String name) {
    return context.getResources().getIdentifier(name, defType,
            context.getPackageName());
}

たとえば、Activityから、次のように呼び出します

replaceResourceStrings(this, getString(R.string.message_text));
7
schnatterer

Francesco Lauritaによる上記の回答に加えて https://stackoverflow.com/a/39870268/9400836

このような外部宣言を参照することで解決できる「&entity;が参照されましたが宣言されていません」というコンパイルエラーがあるようです

res/raw/entities.ent

<!ENTITY appname "My App Name">

res/values/strings.xml

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE resources [
    <!ENTITY appname SYSTEM "/raw/entities.ent">
]>
<resources>
    <string name="app_name">&appname;</string>
</resources

コンパイルして実行しますが、空の値があります。たぶん誰かがこれを解決する方法を知っています。コメントを投稿しますが、最低評価は50です。

2
pumnao

これは古い投稿であることは承知していますが、私のプロジェクトのために思いついた素早い「汚い」ソリューションを共有したかったのです。 TextViewでのみ機能しますが、他のウィジェットにも適用できます。リンクを角括弧で囲む必要があることに注意してください(例:[@string/foo])。

public class RefResolvingTextView extends TextView
{
    // ...

    @Override
    public void setText(CharSequence text, BufferType type)
    {
        final StringBuilder sb = new StringBuilder(text);
        final String defPackage = getContext().getApplicationContext().
                getPackageName();

        int beg;

        while((beg = sb.indexOf("[@string/")) != -1)
        {
            int end = sb.indexOf("]", beg);
            String name = sb.substring(beg + 2, end);
            int resId = getResources().getIdentifier(name, null, defPackage);
            if(resId == 0)
            {
                throw new IllegalArgumentException(
                        "Failed to resolve link to @" + name);
            }

            sb.replace(beg, end + 1, getContext().getString(resId));
        }

        super.setText(sb, type);
    }
}

このアプローチの欠点は、setText()CharSequenceStringに変換することです。これは、SpannableStringのようなものを渡すと問題になります。私のプロジェクトでは、TextViewsからアクセスする必要がないActivityにのみ使用したため、これは問題ではありませんでした。

2
jclehner

文字列プレースホルダー(%s)を使用し、実行時にJavaを使用して置換できます。

<resources>
<string name="button_text">Add item</string>
<string name="message_text">Custom text %s </string>
</resources>

とJavaで

String final = String.format(getString(R.string.message_text),getString(R.string.button_text));

そして、文字列を使用する場所に設定します

1
Ismail Iqbal

新しい データバインディング を使用すると、XMLを連結してさらに多くのことができます。

たとえば、message1とmessage2を取得した場合、次のことができます。

Android:text="@{@string/message1 + ': ' + @string/message2}"

いくつかのテキストユーティリティをインポートして、String.formatおよびフレンドを呼び出すこともできます。

残念ながら、それが乱雑になる可能性のあるいくつかの場所でそれを再利用したい場合は、このコード部分をどこにも望んでいません。そして、それらを1つの場所でxmlで定義することはできません(私が知っていることではありません)ので、それらの構成をカプセル化するクラスを作成できます:

public final class StringCompositions {
    public static final String completeMessage = getString(R.string.message1) + ": " + getString(R.string.message2);
}

その後、代わりに使用できます(データバインディングを使用してクラスをインポートする必要があります)

Android:text="@{StringCompositions.completeMessage}"
1
ndori