我在我的应用程序中使用Lars Werkman的HoloColorPicker,并希望保存颜色并在其他活动中重复使用它。
是否应将颜色值保存为字符串,整数或其他内容? 我已经尝试过string和int,但没有成功。
我对编程知之甚少,所以尽量彻底解释:)
picker.getColor();返回ARGB值,如何保存该值并在其他地方使用?
@Override
public void onColorChanged(int color) {
//gives the color when it's changed.
colorValue = Integer.valueOf(picker.getColor());
editor.clear();
editor.putInt("themes_colorcode", colorValue);
editor.commit();
}
下面的代码应该在onCreate中使用,对吗?
actionBar.setBackgroundDrawable(new ColorDrawable(colorValue));
但是我收到了这个错误:
Process: com.okramuf.musikteori, PID: 28274
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.okramuf.musikteori/com.okramuf.musikteori.settings}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
at android.app.ActivityThread.access$800(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5017)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at com.okramuf.musikteori.settings.onCreate(settings.java:51)
at android.app.Activity.performCreate(Activity.java:5231)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
at android.app.ActivityThread.access$800(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5017)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
at dalvik.system.NativeStart.main(Native Method)
答案 0 :(得分:2)
在android中你想要在你的代码之外分离你的所有资源,如字符串,颜色,尺寸(文本大小),drawable等,我们这样做是为了给我们的代码更多的灵活性。例如 如果您想将应用中红色的颜色更改为浅红色,只需在一个地方更改资源,就会影响整个应用... 当你在android通知中打开一个项目时,你有一个res文件夹。 在里面你会找到值文件夹。 站在值文件夹并右键单击您的按钮。 添加一个xml文件并将其命名为颜色。 你可以看看这个网站,这是一个不错的选择:
http://www.rapidtables.com/web/color/RGB_Color.htm
你可以选择你想要的颜色,你会看到它的价值。例如白色的#FFFFFF。 现在你需要打开你创建的文件,然后按ctrl + space并添加一种颜色。 它会是这样的:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="opaque_red">#FF0000</color>
</resources>
从您的资源中获取颜色,您可以从您的Activity中调用它,如下所示: 在onCreate()中写下这个:
Recources res = getResources();
TextView tv = (TextView)findViewById(R.id.my_tv);
tv.setBackgroundResource(R.color.opaque_red);
或者您可以在xml布局中定义它,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<EditText xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@color/opaque_red"
android:text="@string/hello" />
希望它能回答你的问题...
答案 1 :(得分:0)
此代码有效:
我添加了
private static int colorValue = 0;
和
@Override
public void onColorChanged(int color) {
//gives the color when it's changed.
colorValue = picker.getColor();
editor.clear();
editor.putInt("themes_colorcode", colorValue);
editor.commit();
}