5个回答
展开全部
首先在在AndroidManifest.xml里配置
<!-- 添加第二个activity -->
<activity android:name="早搏.OtherActivity" android:label="other Activity"></activity>
在第一个main layout里面配置一个跳转按钮陆差祥
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="打开otheractivity"
android:id="@+id/button"
/>
配置第二个layout
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:text="other activiy"庆态
/>
</LinearLayout>
待跳转页面的activity,与第二个layout结合.代码如下
public class OtherActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
this.setContentView(R.layout.other);
}
}
对主activity配置.点击button可以跳转到第二个页面
Button button = (Button)this.findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// 打开另一个activity,通过意图,意图作用是激活其他组件
Intent intent = new Intent();
intent.setClass(MainActivityActivity.this, OtherActivity.class);
//发送意图.将意图发送给android系统,系统根据意图来激活组件
startActivity(intent);
}
});
}
<!-- 添加第二个activity -->
<activity android:name="早搏.OtherActivity" android:label="other Activity"></activity>
在第一个main layout里面配置一个跳转按钮陆差祥
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="打开otheractivity"
android:id="@+id/button"
/>
配置第二个layout
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:text="other activiy"庆态
/>
</LinearLayout>
待跳转页面的activity,与第二个layout结合.代码如下
public class OtherActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
this.setContentView(R.layout.other);
}
}
对主activity配置.点击button可以跳转到第二个页面
Button button = (Button)this.findViewById(R.id.button);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
// 打开另一个activity,通过意图,意图作用是激活其他组件
Intent intent = new Intent();
intent.setClass(MainActivityActivity.this, OtherActivity.class);
//发送意图.将意图发送给android系统,系统根据意图来激活组件
startActivity(intent);
}
});
}
展开全部
你的button不在Activity中的话,就用上下文来启动,也就是升逗你上面的mContext来启动,startActivity(new Intent(mContext,xxx.class))
改为纳笑如mContext.startActivity(new Intent(xxx));
其实之前的startActivity不行就是因为他默认是this.startActivity,你当前类是Activity子类洞启的时候才行,要不然就手动用上下文环境来启动。
所以多了解代码底层功能好点,一般我setView什么的都是this.setView来,记清楚明白,还能让eclipse自动提示呢。。。
改为纳笑如mContext.startActivity(new Intent(xxx));
其实之前的startActivity不行就是因为他默认是this.startActivity,你当前类是Activity子类洞启的时候才行,要不然就手动用上下文环境来启动。
所以多了解代码底层功能好点,一般我setView什么的都是this.setView来,记清楚明白,还能让eclipse自动提示呢。。。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
btn_save.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View view)
{
Intent intent = new Intent(当前的Activity.this, 要核大跳转的Activity.class);
薯并 startActivity(intent);
数氏迹 }
});
其中btn_save就是button按钮
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
button触发事吵薯件,
然后用昌碰族Intent就可以了
Intent intent = new Intent(本activity.this,耐弊要跳转的activity.class);
startActivity(intent);
然后用昌碰族Intent就可以了
Intent intent = new Intent(本activity.this,耐弊要跳转的activity.class);
startActivity(intent);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
设置按钮监听,setOnClickListener,然后在监听中写你想做的代码。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询