<resources>
和有什么区别<Linearlayout>
?什么是<resources>
我们在哪里使用它?我搜索并看到了 android 网站,但我不明白那是什么<resources>
。
为什么在strings.xml
我们使用<resources>
?例如,在这段代码中我们使用了为什么不使用<LinearLayout>
?
<?xml version="1.0" encoding="utf-8"?>
<resources>
<array name="difficulty">
<item>@string/easy_label</item>
<item>@string/medium_label</item>
<item>@string/hard_label</item>
</array>
</resources>
干杯。