1

次のような文字列配列があります。

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<string-array name="my_videos">
    <item>bunny.mp4</item>
    <item>bunny.m4a</item>
    <item>bunny.3gp</item>
</string-array>

そして、私のアプリにはこれがあります:

String product = ((TextView) view).getText().toString();

今、私はこのような通常のテキストを入れたいです:

<resources xmlns:android="http://schemas.android.com/apk/res/android">
<string-array name="my_videos">
    <item name="bunny.mp4">Movie description 1</item>
    <item name="bunny.m4a">Movie description 2</item>
    <item name="bunny.3gp">Movie description 3</item>
</string-array>

今、私は name 属性にアクセスし、テキストを取得したくありません。私はAndroidが初めてで、これが可能かどうかわかりません。

助けてください。

4

0 に答える 0