如何将视图放置在默认标题栏上方?
在我的 Android 应用程序中,我想在默认图块栏上方放置一个自定义视图。有人可以提出建议吗?
In my android application , i want to place a customized view above the default tilebar .could anyone have a suggestion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为这是不可能的。您可以做什么,在布局文件中自己创建所有内容并隐藏默认标题栏。这样,您的布局文件将依次包含以下三个组件。
I dont think that it is possible. What you can do this, create everything on your own in your layout file and hide the default title bar. This way your layout file will have following three components one after another.
设置 requestWindowFeature(Window.FEATURE_NO_TITLE);添加到您的 Activity 并设计您自己的标题栏并将其放置在屏幕顶部。
Set
requestWindowFeature(Window.FEATURE_NO_TITLE)
; to your Activity and design your own title bar and place it at the top of your screen.