android问题:activity 跳转后不显示布局,只有空白

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android问题:activity 跳转后不显示布局,只有空白相关的知识,希望对你有一定的参考价值。

原来的receiver用 intent

public BroadcastReceiver onReceiver = new BroadcastReceiver()
public void onReceive(Context context, Intent intent)
if(intent.getAction().equals("android.intent.action.SCREEN_ON"))

Intent startIntent = new Intent(UnlockService.this, UnlockLayout.class);
startIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(startIntent);


;

新的activity里的onCreate

public void onCreate()
//super.onCreate(savedInstanceState);

setContentView(R.layout.unlock_main);



androidmanifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.voiceunlock"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.DISABLE_KEYGUARD"/>
<uses-permission android:name="android.permission.WAKE_LOCK"/>
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher" >

<activity
android:name="com.example.voiceunlock.MainActivity"
android:theme="@android:style/Theme.Black.NoTitleBar"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<activity
android:name="com.example.voiceunlock.UnlockLayout"
android:theme="@android:style/Theme.Wallpaper.NoTitleBar.Fullscreen">
<intent-filter>
<action android:name="android.intent.action.SCREEN_ON"/>
</intent-filter>
</activity>

<receiver android:name=".UnlockReceiver" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>

<service android:name="UnlockService"></service>
</application>

</manifest>

还有一些原因不是因为这个问题,其中之一是因为某些sb跟我一样,不会自动索引生成onCreate方法而是手敲onCreate方法,自动索引生成的带@override标识,系统知道这是对onCreate方法的重写,而手敲的onCreate系统会觉得这是个自定义方法,也会引起跳转后出现空白界面!我只想说,这bug害死爹爹了! 参考技术A //super.onCreate(savedInstanceState);
你把这句注释了,父类的初始化没调用到,当然显示不出来了
参考技术B 你的布局文件没给出来,是不是你的布局里面没放东西?

以上是关于android问题:activity 跳转后不显示布局,只有空白的主要内容,如果未能解决你的问题,请参考以下文章

keep-alive 路由跳转后不刷新页面

解决使用this.$router.push()方法页面跳转后不加载列表刷新的方法问题

给当前页或者跳转后页面的导航栏添加选中样式

listview点击跳转显示信息

页面刷新跳转后,导航栏高亮显示跳转前的点击位置

如果用jquery标签页的load方法做载入的页里面的超链接跳转后能否继续在这个div中显示跳转后的页面