在android视图底部添加标签栏的问题
在我的应用程序中,我有一个选项卡栏。它包含四个选项卡,我在其中显示列表视图。它工作正常,但现在我需要将选项卡栏移至屏幕底部。当我更改代码以在视图底部显示选项卡栏时,列表视图也会以全屏方式显示,与选项卡栏重叠。
这是示例代码,
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainlayout"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:orientation="vertical" >
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#000000">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Credit Balance"
android:background = "#55000000"
android:textColor = "#FF0033"
/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
**android:layout_alignParentBottom = "true"**/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</RelativeLayout>
</TabHost>
</FrameLayout>
我使用以下代码在 4 个各自的选项卡中添加 4 个列表视图,
tabHost.addTab(tabHost.newTabSpec(NEW_TAB).setIndicator(NEW)
.setContent(new Intent(this, NEWActivity.class)));
请问有人可以提出解决方案吗?
谢谢
In my application I have a tab bar. It contains four tabs in which I am showing a list view. It was working fine, but now I need to shift the tab bar to the bottom of the screen. When I changed my code to show tab bar at the bottom of the view, list views are showing in full screen overlapping the tab bar as well.
Here is the sample code
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mainlayout"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:orientation="vertical" >
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="#000000">
<RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="5dp">
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Label"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Credit Balance"
android:background = "#55000000"
android:textColor = "#FF0033"
/>
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
**android:layout_alignParentBottom = "true"**/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />
</RelativeLayout>
</TabHost>
</FrameLayout>
I am adding 4 list views in 4 respective tabs with the following code
tabHost.addTab(tabHost.newTabSpec(NEW_TAB).setIndicator(NEW)
.setContent(new Intent(this, NEWActivity.class)));
Please can anyone suggest a solution to this?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将此行添加
到您的 FrameLayout 和
TabWidget 中
add this
line to your FrameLayout and with
in TabWidget