Я хочу поместить макет в другой макет, но когда я делаю это, он дает NullPointerException
на relLayout.addView(squareLayout);
строке
for (int i = 0; i < 6; i++) {
for (int j = 0; j < 7; j++) {
RelativeLayout relLayout = (RelativeLayout) findViewById(relIds[i][j]);
relLayout.removeAllViews();
RelativeLayout squareLayout = (RelativeLayout) findViewById(R.id.square);
relLayout.addView(squareLayout);
}
}
Скажите, пожалуйста, что мне делать?