我觉得我必须在这里忽略一些东西。我已通过SDK Manager下载了API Level 10
API。如果我尝试创建一个新项目,我不能,因为只有Holo
个主题可用,所有这些主题至少需要API Level 11
。我没有其他主题选项,因此“下一步”按钮显示为灰色。有没有办法指定兼容的主题?
答案 0 :(得分:3)
如果您没有看到“无”选项,请转到这些文件并确保模板配置正确:
{Install_Path}\android-studio\plugins\android\lib\templates\gradle-projects\NewAndroidApplication\template.xml
{Install_Path}\plugins\android\lib\templates\gradle-projects\NewAndroidLibrary\template.xml
{Install_Path}\sdk\tools\templates\projects\NewAndroidApplication\template.xml
{Install_Path}\sdk\tools\templates\projects\NewAndroidLibrary\template.xml
在文本编辑器(Notepad ++)中打开每个文件并搜索“baseTheme”。 应该有一个带有该id的'parameter'xml元素。
确保参数看起来像这样
<parameter
id="baseTheme"
name="Base Theme"
type="enum"
default="none"
help="The base user interface theme for the library">
<option id="none" default="true">None</option>
<option id="holo_dark" minBuildApi="11">Holo Dark</option>
<option id="holo_light" minBuildApi="11">Holo Light</option>
<option id="holo_light_darkactionbar" minBuildApi="14">Holo Light with Dark Action Bar</option>
</parameter>
而不是这样:
<parameter
id="baseTheme"
name="Base Theme"
type="enum"
default="holo_light_darkactionbar"
help="The base user interface theme for the application">
<option id="holo_dark" minBuildApi="11">Holo Dark</option>
<option id="holo_light" minBuildApi="11">Holo Light</option>
<option id="holo_light_darkactionbar" minBuildApi="14" default="true">Holo Light with Dark Action Bar</option>
</parameter>
特别是文件'\ android-studio \ plugins \ android \ lib \ templates \ gradle-projects \ NewAndroidApplication \ template.xml'
答案 1 :(得分:2)
这项工作对我来说:
最诚挚的问候, jfidel87
答案 2 :(得分:0)
Android Studio有更新版本:0.3.1
请看这里:http://tools.android.com/recent
修复了影响“新活动”向导的问题(问题61258和问题61269)
我认为这是一个错误并在此版本中得到解决。