Android DatePicker 在 TableRow 中右对齐
我已将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你必须做这样的事情:
我仅将日期选择器的宽度更改为wrap_content,日期选择器位于右侧,但由于被拉伸以填充父级,因此您看不到它。
You have to do something like this:
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..