我正在尝试使用 HoloEverywhere,但不知道如何安装它。我遵循了这个GitHub 页面上列出的内容。我只是得到很多错误。有谁知道如何让它与 android 2.3.3 API 10 一起使用?我正在运行 Android Developer Tools Build: v21.1.0-569685
问问题
601 次
2 回答
1
只需更新您的 Eclipse ADT 和 Android SDK 并按照以下步骤操作
- 进入https://github.com/Prototik/HoloEverywhere
- 点击下载 ZIP
- 解压下载的文件
- 打开 ADT
- 选择 File > Import > Android > Existing Android Code Into Workspace > Next
- 在根目录上单击浏览... 并搜索在步骤 3 中创建的文件夹
- 打开该文件夹并选择库文件夹,然后单击打开
- 然后单击完成并等待它加载
- 右键单击现有项目并选择属性 > Android > 单击添加...
- 选择 HoloEverywhere 库并单击确定,在属性窗口中单击确定
于 2013-11-15T06:26:26.180 回答
0
嘿,试试这个:(给出很多答案,因为可能有一个适合你):-
android:theme=“@style/Theme.Holo
// or if you want to use the Holo light theme:
android:theme=“@style/Theme.Holo.Light
还有这个:
Theme.Holo and Theme.Holo.Light have been available since API level 11, but Theme.Holo.Light.DarkActionBar is new in API level 14.
res/values/themes.xml:
<resources>
<style name="MyTheme" parent="@android:style/Theme">
<!-- Any customizations for your app running on pre-3.0 devices here -->
</style>
</resources>
res/values-v11/themes.xml:
<resources>
<style name="MyTheme" parent="@android:style/Theme.Holo">
<!-- Any customizations for your app running on devices with Theme.Holo here -->
</style>
</resources>
Finally, in AndroidManifest.xml:
<!-- [...] -->
<application android:name="MyApplication"
android:label="@string/application_label"
android:icon="@drawable/app_icon"
android:hardwareAccelerated="true"
android:theme="@style/MyTheme">
<!-- [...] -->
并在活动中:
<activity
android:name=".login"
android:label="@string/login"
android:noHistory="true"
android:theme="@android:style/Theme.Holo.Light"/>
<activity
android:name=".Preferences"
android:theme="@android:style/Theme.Holo.Light" >
于 2013-07-22T04:58:02.363 回答