Android: как установить полноэкранное изображение в качестве фона с полноэкранным просмотром прокрутки? - SDK 2.3 - PullRequest
0 голосов
/ 17 июня 2011

Я пытаюсь заполнить экран фоновым изображением, а также заполнить экран кнопками на разметке таблицы с помощью прокрутки.

В основном, как мне заполнить экран, независимо от того, какого размера экран трубки?

вот XML, (пришлось добавить его так, как бы не отображать промежуточные скобки кода)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_height="fill_parent" 
android:layout_width="fill_parent"
android:background="@drawable/background">


<ScrollView
 android:id="@+id/scrollview1"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent">

 <TableLayout
 android:id="@+id/tablelayout1"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
  android:orientation="vertical"
   >
 <TableRow 
  android:id="@+id/TableRow01" 
android:layout_width="fill_parent"
android:layout_height="wrap_content">

<Button
 android:id="@+id/sound1"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_weight="1"
 android:textSize="12sp"
 android:textColor="#ffffff"
 android:textStyle="bold"
 android:background="@drawable/button"
 android:text="Wolf"
  >
 </Button>
 <Button
 android:id="@+id/sound2"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_weight="2"
 android:textSize="12sp"
 android:textColor="#ffffff"
 android:textStyle="bold"
 android:background="@drawable/button"
 android:text="Strings"
  >
 </Button>

 </TableRow>

 <TableRow 
 android:id="@+id/TableRow02" 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content">

 <Button
 android:id="@+id/sound3"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:layout_weight="2"
 android:textSize="12sp"
 android:textColor="#ffffff"
 android:textStyle="bold"
 android:background="@drawable/button"
 android:text="Haunt"
  >
 </Button>
 <Button
 android:id="@+id/sound4"
 android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_weight="1"
  android:textSize="12sp"
  android:textColor="#ffffff"
  android:textStyle="bold"
  android:background="@drawable/button"
  android:text="Sewer"
   >
 </Button>
</TableRow>

 <TableRow 
  android:id="@+id/TableRow03" 
 android:layout_width="fill_parent"
 android:layout_height="wrap_content">

 <Button
  android:id="@+id/sound5"
   android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_weight="1"
  android:textSize="12sp"
  android:textColor="#ffffff"
  android:textStyle="bold"
   android:background="@drawable/button"
  android:text="Scream"
    >
  </Button>

  <Button
  android:id="@+id/sound6"
   android:layout_width="wrap_content"
  android:layout_height="wrap_content"
    android:layout_weight="2"
    android:textSize="12sp"
   android:textColor="#ffffff"
   android:textStyle="bold"
    android:background="@drawable/button"
    android:text="Eerie"
     >
    </Button>
    </TableRow>

  <TableRow 
   android:id="@+id/TableRow04" 
    android:layout_width="fill_parent"
     android:layout_height="wrap_content">
      <Button
      android:id="@+id/sound7"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
     android:layout_weight="2"
     android:textSize="12sp"
       android:textColor="#ffffff"
      android:textStyle="bold"
      android:background="@drawable/button"
       android:text="Animal Shock">
     </Button>

      </TableRow>


       </TableLayout>

        </ScrollView>


         </LinearLayout>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...