我正在尝试创建一个与Android 2.x上原生日历应用的“创建事件”屏幕非常相似的表单
基本上它有一个固定的标题,固定的页脚和中间是(我猜)一个ScrollView
具有不同的“问题”,如“事件”,“从”,“到”,“位置”等... < / p>
我尝试了一些选项,但找不到合适的布局,不涉及计算屏幕的高度
非常感谢任何帮助!
答案 0 :(得分:1)
我使用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">
<TextView
android:id="@+id/status_header"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:paddingTop="8px"
android:paddingBottom="8px"
android:gravity="center"
android:textColor="@color/header_foreground"
android:background="@color/header_background"
android:text="@string/status_header"/>
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/statuspanel"
android:layout_above="@+id/status_footer">
将所有中间位放在这里,也许放在TableLayout
中</ScrollView>
<TableLayout
android:id="@+id/status_footer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:paddingTop="4px"
android:paddingLeft="2px"
android:paddingRight="2px"
android:stretchColumns="*"
android:textColor="@color/footer_foreground"
android:background="@color/footer_background">
<TableRow>
<Button
android:id="@+id/status_backbutton"
android:layout_width="0px"
android:layout_weight="1"
android:text="@string/status_backbutton" />
</TableRow>
</TableLayout>
</RelativeLayout>
你必须原谅我所有的颜色,但你明白了。 它在RelativeLayout中使用alignParent元素,这是关键,我认为