
	 
	이런식으로 구현해야 하는데요..
	하.. 정말 답답해서 죽겟네요 ㅜㅜ
	 
<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:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  
        <LinearLayout 
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:background="#FFDAB9"
            android:gravity="right"
            >
            <Button
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="머지"
                 />
        </LinearLayout>
        
  <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"/>
  
  <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#FF0000"
            android:layout_weight="1"/>
  
  <TabWidget
            android:id="@android:id/tabs"
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"/>
    </LinearLayout>
</android.support.v4.app.FragmentTabHost>
	xml 이구요
	mTabHost = (FragmentTabHost)findViewById(android.R.id.tabhost);
	   mTabHost.setup(this,getSupportFragmentManager(),R.id.pager);
	   mTabHost.addTab(mTabHost.newTabSpec("simple").setIndicator("Simple"),testtest.class,null); 
	 
	엑티비티엔..이런식으로..
	일단 테스트 해보기위해 하고잇는데요..
	자꾸..nullpoint가 뜨네요..
	길잡이가 되어주실분 계신가요 ㅜㅜ 답변기다립니다.ㅜㅜ