1

我在项目中像 jar 一样导入了 holoeverywhere。但是当我尝试使用主题时,什么都没有改变。我应该怎么做才能让它工作?

package com.example.testholo;
        import android.app.Activity;
        import android.os.Bundle;


        public class MyActivity extends Activity {
            /**
             * Called when the activity is first created.
             */

            @Override
            public void onCreate(Bundle savedInstanceState) {
                setTheme(com.actionbarsherlock.R.style.Holo_Theme_Fullscreen);
                super.onCreate(savedInstanceState);
                setContentView(R.layout.main);
            }

    }

我也有一个2.3下的项目。如何在 2.3 下的已完成项目中使用 holoeverywhere?

4

1 回答 1

0

打开模块设置 - 库 - + - 从 Maven - 类型 org.holoeverywhere:library:1.5.0 - 确定。指定一些目录,IDEA 应该会自动从 maven repo 导入和连接 HoloEverywhere。
另请参阅演示项目 - 您应该使用 org.holoeverywhere.* 类,而不是 android.*。

于 2013-04-26T11:41:32.117 回答