标题栏底部

发布于 2024-10-27 00:26:28 字数 337 浏览 1 评论 0原文

我阅读了本教程如何创建自定义标题栏。

http://www.anddev.org/view-layout-resource-problems-f27/my-own-titlebar-backbutton-like-on-the-iphone-t4591.html

工作正常但是:

是吗可以将此栏添加为底部而不是顶部的标题栏吗?

i read this tutorial how to create a custom-titlebar.

http://www.anddev.org/view-layout-resource-problems-f27/my-own-titlebar-backbutton-like-on-the-iphone-t4591.html

works fine BUT:

is it possible to add this bar not as a titlebar on the top but on the bottom?

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

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

发布评论

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

评论(2

心凉怎暖 2024-11-03 00:26:28

您始终可以创建自己的 TextView 并将其放置在布局上的绝对位置(请参阅 AbsoluteLayout 此处),但我建议不要这样做,因为它违反了正常的用户界面标准,并且可能会让用户感到困惑。此外,如果您在布局中滚动,定位会变得更加复杂。据我所知,没有移动标题栏的内置方法。

You can always create your own TextView and place it in an absolute position on a layout (see AbsoluteLayout here) but I would recommend against this as it breaks from the normal user interface standards and could be confusing to users. In addition if you have scrolling in your layout the positioning would become more complex. As far as I know there is no built-in way of moving the title bar.

你怎么敢 2024-11-03 00:26:28

只是一个想法。
您可以关闭标题栏并将标题栏之类的内容添加到所有布局的底部:

<LinearLayout
   android:orientation="vertical" 
   android:width="fill_parent"
   android:height="fill_parent">
   <LinearLayout 
      android:id="@+id/layout_container"
      android:weight="1"
      android:height="0dp"
      android:width="fill_parent">
      ...
   </LinearLayout>
   <LinearLayout 
      androdi:id="@+id/titlebar"
      android:height="wrap_content"
      android:width="fill_parent">
      ...
   </LinearLayout>
</LinearLayout>

但我从未在底部见过标题栏。

Just an idea.
You can turn off the title bar and add something like title bar to the bottom of all your layouts:

<LinearLayout
   android:orientation="vertical" 
   android:width="fill_parent"
   android:height="fill_parent">
   <LinearLayout 
      android:id="@+id/layout_container"
      android:weight="1"
      android:height="0dp"
      android:width="fill_parent">
      ...
   </LinearLayout>
   <LinearLayout 
      androdi:id="@+id/titlebar"
      android:height="wrap_content"
      android:width="fill_parent">
      ...
   </LinearLayout>
</LinearLayout>

But i've never seen a title bar at the bottom.

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