1) Добавим свою картинку в res/drawable
2) В layout/main.xml добавим с палитры
LinearLayout
3) Пишем:
BitmapDrawable d = (BitmapDrawable) getResources().getDrawable(R.drawable.background);
LinearLayout layout = (LinearLayout)findViewById(R.id.tableLayout1);
layout.setBackgroundDrawable(d);
Комментариев нет:
Отправить комментарий