我有这个布局:
ComposeView http://img845.imageshack.us/img845/2121/d6zp.png
2 个边框(左、右)由图标填充。当我触摸其中一个图标时,我会访问其他活动。顶部的黑色条是自定义标题栏。
清晰的灰色内部空间是我需要在我的应用程序上放置所有活动的地方。所以这个布局类似于菜单布局,在所有活动中都是静态的。
这是布局 xml:
menu_view.xml
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.MenuView" >
<!-- Show top black custom title bar-->
<include
layout="@layout/custom_tittlebar" >
</include>
<!-- Button columns -->
<LinearLayout
android:id="@+id/lefthandmenu"
android:layout_width="85dip"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:layout_alignParentLeft="true"
android:orientation="vertical"
android:background="@drawable/border_cut" >
<ImageView
... />
...
</LinearLayout>
<LinearLayout
android:id="@+id/righthandmenu"
android:layout_width="85dip"
android:layout_height="match_parent"
android:layout_below="@id/title"
android:layout_alignParentRight="true"
android:orientation="vertical"
android:background="@drawable/border_cut" >
<ImageView
... />
...
</LinearLayout>
<!-- Blank space which will contain other activities -->
<LinearLayout
android:id="@+id/activitycontent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_toLeftOf="@id/righthandmenu"
android:layout_toRightOf="@id/lefthandmenu"
android:layout_below="@id/title"
android:orientation="vertical" >
</LinearLayout>
这是定义所有图标的 onClickListeners 的类。
菜单视图.java
public class MenuView extends RelativeLayout {
private final LayoutInflater inflater;
Context context;
public MenuViewActivity(Context context, AttributeSet attrs) {
super(context, attrs);
this.context = context;
inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
inflater.inflate(R.layout.menu_view, this, true);
((ImageView)this.findViewById(R.id.navButton)).setOnClickListener(launch_nav);
}
final OnClickListener launch_nav = new OnClickListener() {
@Override
public void onClick(View v) {
getContext().startActivity(new Intent(getContext(), Navigation.class));
}
};
好吧,有了这个(我不确定它是否一切正常,也许我在 inflate 方法或类似的东西上做错了),现在的事情是将其他活动的布局定义在这个视图中。为此,我写道:
ExampleActivity.java
public class ExampleActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LinearLayout inside_menu_view = (LinearLayout)findViewById(R.id.activitycontent);
View this_layout = getLayoutInflater().inflate(R.layout.main, inside_menu_view, true);
inside_menu_view.addView(this_layout);
但是我在最后一行得到了 NullPointerException。所以,在这个片段上膨胀时一定是错误的。