i get null pointer error in line :
rl.setBackgroundResource(R.drawable.headerbackground);
MainActivity code:
LayoutInflater inflater = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
View mainLayout = inflater.inflate(R.layout.main_layout, null, false);
View includedHeader = mainLayout.findViewById(R.id.header);
RelativeLayout rl = (RelativeLayout) includedHeader.findViewById(R.id.header_root);
rl.setBackgroundResource(R.drawable.headerbackground);
setContentView(mainLayout);
in main_layout.xml
I include header_layout
:
<include android:id="@+id/header" layout="@layout/header_layout"/>
and in header_layout.xml
:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="50dp"
android:id="@+id/header_root" />
question: why rl is null and how access to it in my code?
EDITED: logcat logs(mainActivity.java:58 is rl.setBackground(R.drawable.headerbackround) in my code):
Caused by: java.lang.NullPointerException
at com.npi.blureffect.MainActivity.onCreate(MainActivity.java:58)
at android.app.Activity.performCreate(Activity.java:5243)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2140)
You are setting your ContentView in the wrong order. You have to first set the ContentView, then change the background color :