我的应用程序中有两个活动:菜单活动和主活动。
这是MenuActivity 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=".MenuActivity" >
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center"
android:background="#000">
<TextView
android:text="menu 1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/menu1"
android:textColor="#fff"
android:padding="5dp"
/>
<TextView
android:text="menu 2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/menu2"
android:textColor="#fff"
android:padding="5dp"
/>
</LinearLayout>
</RelativeLayout>
这是 MainActivity.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=".MainActivity" >
<include
layout="@layout/activity_menu"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
/>
</RelativeLayout>
现在 menu1 和 menu2 的 OnClick 监听器在MenuActivity.java
.
public class MenuActivity extends Activity {
TextView menu1, menu2;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_menu);
menu1 = (TextView)findViewById(R.id.menu1);
menu2 = (TextView)findViewById(R.id.menu2);
menu1.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "menu 1 clicked", 5000).show();
}
});
menu2.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "menu 2 clicked", 5000).show();
}
});
}
如何在MainActivity
. 简而言之,我的代码MenuActivity
必须在各种其他活动中使用,我该如何使用它?请支持一段代码,我做了很多搜索,但没有找到任何相关的东西。我是Android新手,任何帮助将不胜感激。