我有一个布局,带有图像,按钮和textview。当我将图像设置为背景幕时,此背景图像仅为屏幕的一半,其余为黑色。这种方法在其他布局上很好,我有很多东西,但这里只有一半的屏幕。我怎么能做到这一点?
我的布局:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_height="wrap_content" android:layout_width="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/background"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_width="fill_parent"
android:src="@drawable/bonbon"
android:id="@+id/imageView1"
android:layout_height="wrap_content"/>
<cro.perger.bonbon.MyTextView
android:id="@+id/textView1"
android:text="Stanje aktiviranih paketa"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button android:layout_height="wrap_content"
android:text="Provjeri stanje"
android:id="@+id/provjeriStanje"
android:layout_width="fill_parent"/>
<TextView android:text=" "
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
答案 0 :(得分:1)
您有一个ScrollView作为根组件,它的高度定义为“wrap_content”。这很可能是您问题的原因。试试这个版本:
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:background="@drawable/background"
android:layout_height="fill_parent" android:layout_width="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="fill_parent"
android:src="@drawable/bonbon"
android:id="@+id/imageView1"
android:layout_height="wrap_content"/>
<cro.perger.bonbon.MyTextView
android:id="@+id/textView1"
android:text="Stanje aktiviranih paketa"
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Button android:layout_height="wrap_content"
android:text="Provjeri stanje"
android:id="@+id/provjeriStanje"
android:layout_width="fill_parent"/>
<TextView android:text=" "
android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</ScrollView>
答案 1 :(得分:0)
您的滚动视图正在包装可能未填满整个屏幕的内容。
将scroll:layout_height =“wrap_content”更改为scrollview标记中的fill_parent。
答案 2 :(得分:0)
现在试试这个......
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01" android:background="@drawable/Path"
android:layout_height="fill_parent" android:layout_width="fill_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView android:layout_width="fill_parent" android:src="@drawable/Path"
android:id="@+id/imageView1" android:layout_height="wrap_content" />
<Button android:layout_height="wrap_content" android:text="Provjeri stanje"
android:id="@+id/provjeriStanje" android:layout_width="fill_parent" />
<TextView android:text=" " android:textAppearance="?android:attr/textAppearanceLarge"
android:id="@+id/textView2" android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</ScrollView>