|
在phonegap项目里通过插件的方式调用一个activity,在这个在activity界面有一个链接,通过监听onClick方法跳转到项目里的login页面,现在的处理方法是
在onclick里方法里跳转到另外一个activity,在这个activity里执行这些代码:public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//this.appView.setBackgroundResource(R.drawable.screen);
super.setIntegerProperty("splashscreen",R.drawable.screen );
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_ADJUST_PAN);
super.loadUrl("file:///android_asset/www/html/login.html",2000);
}
跳转到html页面,跳转可以成功,问题是login页面点击登录失效页面显示也不正常头部颜色不对,推测的原因是项目里有一个配置为启动的主activity影响了:
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:launchMode="singleTop" android:name="Test" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
有啥好办法解决吗
|
|
|