2

我想實現這個佈局:如何誇大我的情況下的活動?

我的主要活動佈局(main.xml);

請鼠標右鍵點擊下面的圖片和視野圖像

enter image description here

我做了另一個ContentActivity(與內容設置爲content_one.xml),這被認爲是用作上述佈局的一部分(右部分):

enter image description here

我知道我可以通過充氣佈局:

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的充氣佈局的?如果可能的話,該怎麼做?

回答

相關問題