Android垂直屏幕百分比

时间:2014-08-26 12:56:04

标签: android

我写这个xml文件:

代码工作非常好,但我希望这个android:src="@drawable/down"图像适合垂直屏幕的80%,我该怎么做?

    <ImageView
        android:id="@+id/backImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="fitXY"
        android:src="@drawable/back"
         />

    <LinearLayout 
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:weightSum="100">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="60" >

    <ImageView
        android:id="@+id/downImage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"

        android:src="@drawable/down" />
    </LinearLayout>


    </LinearLayout>

1 个答案:

答案 0 :(得分:1)

如果我理解正确并且您希望将两张图片放在另一张图片下,而第二张图片应该占据屏幕的80%,那么这就是解决方案:

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

    <ImageView
        android:id="@+id/backImage"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.2"
        android:scaleType="fitXY"
        android:src="@drawable/back"
     />

    <ImageView
        android:id="@+id/downImage"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="0.8"
        android:src="@drawable/down" />

</LinearLayout>