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

发布于 2024-10-22 01:46:43 字数 200 浏览 4 评论 0原文

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

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

任何帮助将不胜感激!

I'm trying to create a form very similar to the "Create event" screen of the native Calendar app on Android 2.x
Basically it has a fixed header, fixed footer and the middle is (I guess) a ScrollView with different "questions" such as "Event", "From", "To", "Location" etc...

I've tried a few options but I can't find the right layout that doesn't involve calculating the height of the screen

Any help would be very much appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

想念有你 2024-10-29 01:46:43

我使用相对布局:

<?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元素,这是关键

I use a 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">

Put all your middle bits here, maybe in a 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>

You'll have to excuse all my colour bits, but you get the idea.
It's using alignParent elements in a RelativeLayout which is key, I think

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文