我是创建主题的新手,我正在运行CM13,我正在尝试创建CM主题。我只想尝试一个简单的主题,改变壁纸和锁屏图像。我正在使用Android Studio。我尝试使用cyanogenmod提供的模板,我试图从头开始。两者都会运行但不能正确安装。我似乎无法让他们出现在设置>主题下的主题选择器中。我正在为lg g3运行nightlies而没有其他修改。
我的机器人清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.georgialways.thefluxroom">
<uses-feature android:name="org.cyanogenmod.theme" />
<meta-data android:name="org.cyanogenmod.theme.name" android:value="TheFluxRoom" />
<meta-data android:name="org.cyanogenmod.theme.author" android:value="georgialways" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
</application>
</manifest>
&#13;
我的傻瓜:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.georgialways.thefluxroom"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
}
&#13;
我的手机Catlog在运行期间 here
编辑: 我找到了theme that I can run我的手机,它显示在主题下但我仍然不明白为什么来自Gabriel的那个会运行,但来自Cyanogenmod的github的那个不会运行(或者至少出现)