2012-02-02 5 views

答えて

0

<?xml version="1.0" encoding="utf-8"?> 
<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" > 
    <LinearLayout 
     android:orientation="vertical" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent"> 
    <HorizontalScrollView 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:fillViewport="true" 
     android:scrollbars="none"> 
    <TabWidget 
     android:id="@android:id/tabs" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content"/> 
    </HorizontalScrollView> 
    <FrameLayout 
     android:id="@android:id/tabcontent" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" /> 
    </LinearLayout> 
</TabHost> 

このコードを使用します。

+0

私は1日をありがとう。 –

+0

ありがとうございました。魅力的な作品です。 – Madhumitha

0

。あなたは、6時間のためにそれを使用するか、または6時間、それを呼び出すメソッドを作る

TabHost tabHost; 
TabHost.TabSpec spec; 
tabHost=getTabHost() 
Intent intent; 
    intent=new Intent().setClass(this, BirthDayTab.class); 
spec=tabHost.newTabSpec("artists").setIndicator("BirthDay",res.getDrawable(R.drawable.ic_tab_artists)).setContent(intent); 
    tabHost.addTab(spec); 

として追加することができ、画面上 themselveを調整tabhost。スクロールしたい場合は

+0

ありがとう..それは働く.. – Madhumitha

関連する問題