1
我在我的應用程序中有三個活動。改變滑動屏幕的活動
第一個是默認的活動,當我從右向左滑動第二個活動應該打開它的佈局,當我從左向右滑動時第三個應該打開它的佈局 我想改變滑動的活動不僅僅是背景或佈局.. 給我適當的方式來做到這一點。使用此選項卡視圖
IM但這不給予任何滑塊功能
public class TabDemo extends TabActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tab_host);
TabHost tabHost=getTabHost();
// no need to call TabHost.Setup()
//First Tab
TabSpec spec1=tabHost.newTabSpec("activity 1");
spec1.setIndicator("activity 1");
Intent in1=new Intent(this, activity 1);
spec1.setContent(in1);
TabSpec spec2=tabHost.newTabSpec("activity 2");
spec2.setIndicator("activity 2");
Intent in2=new Intent(this,activity 2);
spec2.setContent(in2);
Toast toast = Toast.makeText(getApplicationContext(), "Welcome in Resident center",Toast.LENGTH_SHORT);
toast.show();
TabSpec spec3=tabHost.newTabSpec("activity 3");
spec3.setIndicator("activity 3");
Intent in3=new Intent(this,activity 3);
spec3.setContent(in3);
tabHost.addTab(spec1);
tabHost.addTab(spec2);
tabHost.addTab(spec3);
tabHost.setCurrentTab(1);
}
}
你不能使用這個活動;使用碎片。請參閱http://developer.android.com/reference/android/app/TabActivity.html上的詳細示例 – etienne 2013-04-09 08:40:21