gpt4 book ai didi

java - 需要有关应用程序类的解释

转载 作者:行者123 更新时间:2023-11-29 06:10:49 25 4
gpt4 key购买 nike

我正在尝试使用内置 android 的 Application.class , 但每次我想使用它时,我都会得到一个 NullPointerException。我将分享一些代码来展示我如何访问我的自定义类,它扩展了应用程序:

这是我正在使用的类:

public class SharedProperties extends Application {

private String currentCategory;
private String dataNews;

public SharedProperties() {
super();
}

public String getCurrentCategory() {
return currentCategory;
}

public void setCurrentCategory(String currentCategory) {
this.currentCategory = currentCategory;
}

public String getDataNews() {
return dataNews;
}

public void setDataNews(String dataNews) {
this.dataNews = dataNews;
}

}

...这就是我设置和获取值的方式:

    SharedProperties shared = ((SharedProperties)getApplication());
shared.setCurrentCategory(categories[currentCategory]);
shared.setDataNews(rssList.get(position).getData());

......

SharedProperties shared = ((SharedProperties)getApplication());
String category = shared.getCurrentCategory();
String newstext = shared.getDataNews();

是我访问它的方式不对还是我遗漏了 SharedProperties.class 中的某些内容?

这是我的 list :

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.news.reader"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="4" />

<application android:name="SharedProperties" android:icon="@drawable/logo" android:label="@string/app_name">
<activity android:name="Splash"
android:label="@string/app_name"
android:screenOrientation="portrait">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name="Home"
android:label="@string/app_name"
android:screenOrientation="sensor"
android:configChanges="keyboardHidden|orientation" />
<activity android:name="News"
android:label="@string/app_name"
android:screenOrientation="sensor"
android:configChanges="keyboardHidden|orientation" />
</application>

<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"></uses-permission>
<uses-permission android:name="android.permission.READ_PHONE_STATE"></uses-permission>

</manifest>

最佳答案

android:name <application> 中的属性包含您所有 Activity 的条目,而不是作为单独的实体。将其更改为类的完全限定名称(例如,com.this.is.your.package.SharedPreferences)。

另外,不要这样做。使用 singleton .

关于java - 需要有关应用程序类的解释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6931621/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com