布局与图像和“底栏”问题

时间:2011-08-31 22:14:10

标签: android

我对整个Android事情都很陌生,所以我希望这是一个显而易见的事情,因为我还没能在网上找到解决方案。

我正在创建一个包含ImageView和“底栏”的视图。我遇到的问题是,由于图像比屏幕大,我更喜欢使用类似“fill_parent”或“wrap_content”的东西。理想情况下,我会将ImageView的高度设置为“fill_parent-44px”,但我还没有找到在XML中执行此操作的方法。

最终我计划让ImageView功能具有多点触控变焦功能,因此无法根据不同的屏幕分辨率调整图像大小。

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

使用RelativeLayout

很容易做到这一点
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <View android:id="@+id/bottombar"
        android:background="#FFCC00"
        android:layout_height="40dp"
        android:layout_width="fill_parent"
        android:layout_alignParentBottom="true" />

    <ImageView android:id="@+id/image"
        android:src="@drawable/someimage"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_above="@id/bottombar"/>

</RelativeLayout>

这里重要的事情是android:layout_alignParentBottomandroid:layout_above(有关所有可能的布局属性,请参阅RelativeLayout.LayoutParams)。

android:layout_height="fill_parent"或多或少被忽略,因为它具有正确的RelativeLayout参数,只需要在那里取悦Android UI系统。

android:background仅用于在UI设计器中突出显示,bottombar View可以替换为任何其他视图,例如TextViewLinearLayout等等。