2
我想實現這個佈局:如何誇大我的情況下的活動?
我的主要活動佈局(main.xml);
(請鼠標右鍵點擊下面的圖片和視野圖像)
我做了另一個ContentActivity(與內容設置爲content_one.xml),這被認爲是用作上述佈局的一部分(右部分):
我知道我可以通過充氣佈局:
LinearLayout mainLayout = (LinearLayout) findViewById(R.id.main);
LayoutInflater inflater = (LayoutInflater)Home2.this.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View inflatedView = (View) inflater.inflate(R.layout.content_one, null);
mainLayout.addView(inflatedView);
我想知道,除了膨脹content_one佈局爲主要佈局,是有可能誇大一個活動類,而不是在Android的充氣佈局的?如果可能的話,該怎麼做?
@ kumar Bibek,片段只支持android 3.0嗎?如果我使用android 2.1更新,我可以使用片段嗎? – Mellon
是的,你可以通過使用Fragments靜態庫。 http://developer.android.com/sdk/compatibility-library.html –