gpt4 book ai didi

Android:如何创建类似于日历应用程序的布局 - 创建事件

转载 作者:行者123 更新时间:2023-11-30 04:44:43 24 4
gpt4 key购买 nike

我正在尝试创建一个与 Android 2.x 上 native 日历应用程序的“创建事件”屏幕非常相似的表单基本上它有一个固定的页眉、固定的页脚,中间是(我猜)一个带有不同“问题”的 ScrollView,例如“Event”、“From”、“To”、“Location”等。 ..

我尝试了几个选项,但找不到不涉及计算屏幕高度的正确布局

非常感谢任何帮助!

最佳答案

我使用 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 元素,这是关键,我认为

关于Android:如何创建类似于日历应用程序的布局 - 创建事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5275655/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com