0

如果我的首选项中的复选框被选中,我只是编写了一些代码来将我的背景更改为可绘制对象,并在没有选中时将其变为白色。该代码在我的 MainActivity 中运行良好,但在另一个 Activity (LinksActivity) 中给出了 NullPointerException。任何人都可以纠正我吗?

package nl.plplpl.ccs;

import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.SharedPreferences;
import android.os.Build;
import android.os.Bundle;
import android.preference.PreferenceManager;
import android.widget.LinearLayout;


public class LinksActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
}

@SuppressLint("NewApi")
@SuppressWarnings("deprecation")
@Override
protected void onResume() {
    LinearLayout linkslayout = (LinearLayout) findViewById(R.id.linkslayout);
    SharedPreferences prefs = PreferenceManager
            .getDefaultSharedPreferences(this);
    Boolean bg = prefs.getBoolean("background", false);
    if (bg){

        if (Build.VERSION.SDK_INT >= 16)
            linkslayout.setBackground(getResources().getDrawable(R.drawable.background));
        else
            linkslayout.setBackgroundDrawable(getResources().getDrawable(R.drawable.background));
    } else {
        linkslayout.setBackgroundResource(R.color.white);
    }
    super.onResume();
    }
}
4

1 回答 1

4

您忘记设置活动内容。

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.layout_main);
}
于 2013-03-10T09:59:32.807 回答