如果我在你们的登录界面外面再加一个进入界面,进入界面仅仅是有一个按钮来切换到你们的demo里的登陆界面(该界面不finish),登陆成功进入主界面以后如果此时我点返回按理说应该会返回我的进入界面,但是现在是会导致强退,这是为什么?
进入界面很简单的,其实就是一个按钮来触发进入你们的登录界面
public class L extends Activity {
@Override protected void onCreate(Bundle savedInstanceState) { // TODO Auto-generated method stub super.onCreate(savedInstanceState); setContentView(R.layout.l); }
public void go(View v) { Intent intent = new Intent(L.this, LoginActivity.class); startActivity(intent); } }
布局:
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" >
<Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="go" android:text="111111111"/>
</LinearLayout>
求技术人员按我说的试一下,估计也会强退。
|