我对整个Android事情都很陌生,所以我希望这是一个显而易见的事情,因为我还没能在网上找到解决方案。
我正在创建一个包含ImageView和“底栏”的视图。我遇到的问题是,由于图像比屏幕大,我更喜欢使用类似“fill_parent”或“wrap_content”的东西。理想情况下,我会将ImageView的高度设置为“fill_parent-44px”,但我还没有找到在XML中执行此操作的方法。
最终我计划让ImageView功能具有多点触控变焦功能,因此无法根据不同的屏幕分辨率调整图像大小。
感谢您的帮助。
答案 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_alignParentBottom
和android:layout_above
(有关所有可能的布局属性,请参阅RelativeLayout.LayoutParams)。
android:layout_height="fill_parent"
或多或少被忽略,因为它具有正确的RelativeLayout
参数,只需要在那里取悦Android UI系统。
android:background
仅用于在UI设计器中突出显示,bottombar
View
可以替换为任何其他视图,例如TextView
,LinearLayout
等等。