本文介绍了你怎么把FragmentTabhost底部的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望把tabwidget底部像iPhone应用程序。我知道这样的布局是对谷歌的UserInterface方针,但我需要。
I want to put tabwidget on bottom like iPhone App.I know what this layout is against Google UserInterface guideline ,but i need.
在#1的话,我看过很多类似的帖子。但每一个岗位的工作未启用
so,I have read many similar post in Stackoverflow.but every post isnt working.
我想用FragmentTabhost,不使用外部库(例如:ActionBarsherlock
I want to use FragmentTabhost,without use External library (ex:ActionBarsherlock
这是我的code
<android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout
android:id="@+id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_above="@android:id/tabs" />
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_above="@android:id/tabs" />
<TabWidget
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal" />
</RelativeLayout>
和活动code低于
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_top);
//set up FragmentTabhost
FragmentTabHost host = (FragmentTabHost)findViewById(R.id.tabhost);
host.setup(this,getSupportFragmentManager(),R.id.content);
//add tabspec
TabSpec tabSpec1 = host.newTabSpec("tab1");
Button btn1 = new Button(this);
btn1.setBackgroundResource(R.drawable.icon1);
tabSpec1.setIndicator(btn1);
Bundle bundle1 = new Bundle();
bundle1.putString("name", "tab1");
host.addTab(tabSpec1,SampleFragment.class,bundle1);
TabSpec tabSpec2 = host.newTabSpec("tab2");
Button btn2 = new Button(this);
btn2.setBackgroundResource(R.drawable.icon2);
tabSpec2.setIndicator(btn2);
Bundle bundle2 = new Bundle();
bundle2.putString("name", "tab2");
host.addTab(tabSpec2,SampleFragment1.class,bundle2);
}
这就是我一直像这样在另一个布局
so i have tried another layout like this
<android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@+id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0" />
<TabWidget
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:orientation="horizontal" />
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1" />
</LinearLayout>
请帮帮我,
注意最后我解决了这个ploblem。这是SupportPackage的错误......
Notefinally I solved this ploblem.This is SupportPackage 's bug .....
试试这个
HTTP://$c$c.google。 COM / P /安卓/问题/详细信息?ID = 40035
推荐答案
试试这个:
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TabWidget
android:id="@android:id/tab"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
<FrameLayout
android:id="@android:id/content"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
</RelativeLayout>
这篇关于你怎么把FragmentTabhost底部的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!