如何在我的案例中夸大活动?

时间:2011-07-13 07:54:03

标签: android android-layout android-emulator android-widget android-manifest

我想实现这种布局:

我的主要活动布局( main.xml );

请鼠标右键单击以下图像并查看图像

enter image description here

我创建了另一个 ContentActivity (内容设置为 content_one.xml ),它应该用作上述布局的一部分(右侧部分): / p>

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中膨胀活动类而不是膨胀布局?如果可能的话,怎么做?

1 个答案:

答案 0 :(得分:1)

你不能像这样夸大活动。考虑使用Fragments。

http://developer.android.com/guide/topics/fundamentals/fragments.html