Android Studio:如何向文件添加定义
Android Studio: How to add a definition to a file
Android 工作室初学者。我的教授告诉我更改应用程序中的 res/values/strings.xml。这样做的目的是向文件添加颜色定义,然后告诉我按“添加”按钮。但是,我实际上无法访问与他相同的 window...这是 window:
打开 strings.xml 文件时我看到的是这样的:
我没有实际添加定义的按钮。我尝试通过右键单击文件来处理 strings.xml 文件,但没有任何东西看起来像我想要的任何东西。
感谢任何帮助!
只需根据您的要求在 strings.xml 文件中添加另一个条目,然后保存文件。
例如:
<resources>
<string name="app_name">Temperature Converter</string>
<string name="new_string_name">new_string_value</string>
</resources>
My professor is telling me to change the res/values/strings.xml in my application.
这里您提到要使用 Add
按钮更改字符串。在这种情况下,您可以按如下方式进行:
打开 strings.xml
后,单击右上角的 Open Editor
。
然后你会看到这个新的Window。使用 +
键添加新的字符串资源。
您的教授可能有不同的 Android Studio 版本。这是它在 Android Studio 2.3.3
版本中的显示方式。
The purpose of this is to add a Color definition to the file ...
您在这里提到要更改颜色定义。如果是这种情况,您需要在 colors.xml
中进行更改。如果文件不存在,则在 values
文件夹中创建一个并添加 <color name="color_name">#HEX_VALUE</color>
。然后您可以从 Java 或 XML 文件中引用颜色。
Android 工作室初学者。我的教授告诉我更改应用程序中的 res/values/strings.xml。这样做的目的是向文件添加颜色定义,然后告诉我按“添加”按钮。但是,我实际上无法访问与他相同的 window...这是 window:
打开 strings.xml 文件时我看到的是这样的:
我没有实际添加定义的按钮。我尝试通过右键单击文件来处理 strings.xml 文件,但没有任何东西看起来像我想要的任何东西。
感谢任何帮助!
只需根据您的要求在 strings.xml 文件中添加另一个条目,然后保存文件。
例如:
<resources>
<string name="app_name">Temperature Converter</string>
<string name="new_string_name">new_string_value</string>
</resources>
My professor is telling me to change the res/values/strings.xml in my application.
这里您提到要使用 Add
按钮更改字符串。在这种情况下,您可以按如下方式进行:
打开
strings.xml
后,单击右上角的Open Editor
。然后你会看到这个新的Window。使用
+
键添加新的字符串资源。
您的教授可能有不同的 Android Studio 版本。这是它在 Android Studio 2.3.3
版本中的显示方式。
The purpose of this is to add a Color definition to the file ...
您在这里提到要更改颜色定义。如果是这种情况,您需要在 colors.xml
中进行更改。如果文件不存在,则在 values
文件夹中创建一个并添加 <color name="color_name">#HEX_VALUE</color>
。然后您可以从 Java 或 XML 文件中引用颜色。