Android DatePicker 在 TableRow 中右对齐

发布于 2025-01-07 01:28:45 字数 929 浏览 0 评论 0原文

我已将 DatePicker 添加到 TableLayout 内的 TableRow。我正在尝试执行 DatePicker 的右对齐(请参阅下面的代码)。但是,当我运行该应用程序时,日期选择器未向右对齐。

<TableLayout
    android:id="@+id/_layout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TableRow
        android:id="@+id/_row"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:layout_weight="1" >

        <DatePicker
            android:id="@+id/_date"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_marginLeft="5dip"
            android:layout_marginRight="5dip"
            android:layout_weight="1" />
        </TableRow>
</TableLayout>

如何将日期选择器向右对齐?

I have added a DatePicker to a TableRow inside a TableLayout. I am trying to perform right alignment of the DatePicker (see the code below). However, when I run the application the date picker is not aligned to the right.

<TableLayout
    android:id="@+id/_layout"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <TableRow
        android:id="@+id/_row"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="right"
        android:layout_weight="1" >

        <DatePicker
            android:id="@+id/_date"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_marginLeft="5dip"
            android:layout_marginRight="5dip"
            android:layout_weight="1" />
        </TableRow>
</TableLayout>

How can I align the date picker to the right?

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

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

发布评论

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

评论(1

沙沙粒小 2025-01-14 01:28:45

你必须做这样的事情:

<TableRow
    android:id="@+id/_row"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="right" >

    <DatePicker
        android:id="@+id/_date"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_marginLeft="5dip"
        android:layout_marginRight="5dip" />
    </TableRow>

我仅将日期选择器的宽度更改为wrap_content,日期选择器位于右侧,但由于被拉伸以填充父级,因此您看不到它。

You have to do something like this:

<TableRow
    android:id="@+id/_row"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="right" >

    <DatePicker
        android:id="@+id/_date"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="right"
        android:layout_marginLeft="5dip"
        android:layout_marginRight="5dip" />
    </TableRow>

I've changed only the width of the date picker to wrap_content, the date picker is to the right but because is stretched to fill the parent, you can't see that..

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