为啥 LogCat 不告诉我的代码中的错误在哪里
Posted
技术标签:
【中文标题】为啥 LogCat 不告诉我的代码中的错误在哪里【英文标题】:Why doesn't the LogCat tell where the error is in my code为什么 LogCat 不告诉我的代码中的错误在哪里 【发布时间】:2015-08-21 20:15:08 【问题描述】:我正在尝试use this library。我正在尝试运行 github 页面上给出的演示应用程序,但我得到了这个异常,并且 Logcat 没有说明异常在我的代码中的位置。
问题是如何找出错误在哪里,为什么会出现这个错误,以及如何解决这个问题。当然,这一切都始于知道错误在哪里。
我的猜测:
截图中给出的是我的项目结构,根据该结构,MainActivity
应该具有完全限定名称br.com.edsilfer.custom_searchable_demo.MainActivity
。 但是在 Logcat 的错误消息中,它显示 Unable to... br.com.edsilfer.custom_searchable_demo/br.com.edsilfer.custom_searchable_demo.MainActivity...
那么可能是我在某处写了错误的名称,比如在清单或其他什么地方?以防万一,我也在发布清单代码。
LOGCAT:
08-21 16:00:05.710: E/androidRuntime(5583): FATAL EXCEPTION: main
08-21 16:00:05.710: E/AndroidRuntime(5583): Process: br.com.edsilfer.custom_searchable_demo, PID: 5583
08-21 16:00:05.710: E/AndroidRuntime(5583): java.lang.RuntimeException: Unable to resume activity br.com.edsilfer.custom_searchable_demo/br.com.edsilfer.custom_searchable_demo.MainActivity: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Class java.lang.Object.getClass()' on a null object reference
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2986)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3017)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2392)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread.access$800(ActivityThread.java:151)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.os.Handler.dispatchMessage(Handler.java:102)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.os.Looper.loop(Looper.java:135)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread.main(ActivityThread.java:5254)
08-21 16:00:05.710: E/AndroidRuntime(5583): at java.lang.reflect.Method.invoke(Native Method)
08-21 16:00:05.710: E/AndroidRuntime(5583): at java.lang.reflect.Method.invoke(Method.java:372)
08-21 16:00:05.710: E/AndroidRuntime(5583): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
08-21 16:00:05.710: E/AndroidRuntime(5583): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
08-21 16:00:05.710: E/AndroidRuntime(5583): Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.Class java.lang.Object.getClass()' on a null object reference
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.internal.app.WindowDecorActionBar.getDecorToolbar(WindowDecorActionBar.java:248)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.internal.app.WindowDecorActionBar.init(WindowDecorActionBar.java:201)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.internal.app.WindowDecorActionBar.<init>(WindowDecorActionBar.java:176)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.app.AppCompatDelegateImplV7.createSupportActionBar(AppCompatDelegateImplV7.java:174)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.app.AppCompatDelegateImplBase.getSupportActionBar(AppCompatDelegateImplBase.java:92)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.app.AppCompatDelegateImplV7.onPostResume(AppCompatDelegateImplV7.java:229)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.support.v7.app.AppCompatActivity.onPostResume(AppCompatActivity.java:139)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.Activity.performResume(Activity.java:6089)
08-21 16:00:05.710: E/AndroidRuntime(5583): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2975)
08-21 16:00:05.710: E/AndroidRuntime(5583): ... 11 more
清单:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="br.com.edsilfer.custom_searchable_demo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="22"
android:targetSdkVersion="22" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity android:name="MainActivity"
android:launchMode="singleTop"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
</activity>
<provider android:name=".content_provider.RecentSuggestionsProvider"
android:authorities="br.com.edsilfer.custom_searchable_demo.content_provider.RecentSuggestionsProvider" />
<provider android:name=".content_provider.CustomSuggestionsProvider"
android:authorities="br.com.edsilfer.custom_searchable_demo.content_provider.CustomSuggestionsProvider" />
</application>
</manifest>
注意:如果您认为我应该发布整个 SSCCE 代码,请告诉我,我会发布。
编辑:
MainActivity.java
public class MainActivity extends AppCompatActivity
// Activity callbacks __________________________________________________________________________
@Override
protected void onCreate(Bundle savedInstanceState)
setTheme(R.style.AppTheme);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_a);
CustomSearchableInfo.setTransparencyColor(Color.parseColor("#ccE3F2FD"));
Intent intent = getIntent();
handleIntent(intent);
@Override
protected void onNewIntent(Intent intent)
setIntent(intent);
handleIntent(intent);
// Handles the intent that carries user's choice in the Search Interface
private void handleIntent(Intent intent)
if (Intent.ACTION_SEARCH.equals(intent.getAction()))
String query = intent.getStringExtra(SearchManager.QUERY);
Log.i("Main", "Received query: " + query);
else if (Intent.ACTION_VIEW.equals(intent.getAction()))
Bundle bundle = this.getIntent().getExtras();
assert (bundle != null);
if (bundle != null)
ResultItem receivedItem = bundle.getParcelable(CustomSearchableConstants.CLICKED_RESULT_ITEM);
Log.i("RI.header", receivedItem.getHeader());
Log.i("RI.subHeader", receivedItem.getSubHeader());
Log.i("RI.leftIcon", receivedItem.getLeftIcon().toString());
Log.i("RI.rightIcon", receivedItem.getRightIcon().toString());
// Menu callbacks ______________________________________________________________________________
@Override
public boolean onCreateOptionsMenu(Menu menu)
getMenuInflater().inflate(R.menu.activity_a_menu, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
int id = item.getItemId();
if (id == R.id.action_settings)
return true;
if (id == R.id.action_search)
// Calls Custom Searchable Activity
Intent intent = new Intent(this, SearchActivity.class);
startActivity(intent);
return true;
return super.onOptionsItemSelected(item);
activity_a.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_
android:layout_
android:layout_gravity="center_vertical"
android:focusable="true"
android:clickable="true"
android:background="?android:attr/selectableItemBackground">
<TextView
android:layout_
android:layout_
android:gravity="center"
android:layout_centerVertical="true"
android:text="Custom Search demonstration application"
android:textSize="24dp"/>
</RelativeLayout>
activity_a_menu.xml
<menu
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="edsilfer.com.br.edsilfer.Main">
<item
android:id="@+id/action_settings"
android:orderInCategory="100"
android:showAsAction="never"
android:title="@string/action_settings"
tools:ignore="AppCompatResource" />
<item
android:id="@+id/action_search"
android:orderInCategory="200"
android:title="Search"
android:icon="@drawable/ic_search_white_18dp"
app:showAsAction="ifRoom"/>
</menu>
【问题讨论】:
查看我之前的项目,您清单中的android:name="MainActivity"
应该是android:name="br.com.edsilfer.custom_searchable_demo.MainActivity"
。所以是的,使用完整的包名,看看错误是什么/如果是什么?然后我建议对 provider
名称执行相同的操作,使用包含包的全名并查看是否有效。
或者只放android:name=".MainActivity",因为包是之前声明的,或者如最后一条评论所暗示的,但是是一样的。
您可以发布您的 MainActivity 及其相应布局文件的源代码吗?您似乎正在尝试使用不是Toolbar
的东西作为ActionBar
。
好的,给我看看你的 MainActivity 代码,应该有一些错误
好的,我不确定,但是在onCreate方法中,在应用主题之前尝试调用super.Oncreate
【参考方案1】:
好的,我不知道您的 xml(布局、菜单)代码,但请检查您的菜单是否是这样的:
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".BlockActivity" >
<item android:id="@+id/action_search"
android:title="@string/search"
android:orderInCategory="100"
android:icon="@drawable/ic_action_search"
app:showAsAction="always|collapseActionView"
app:actionViewClass="android.support.v7.widget.SearchView"
android:actionLayout="@layout/layout_search"
/>
</menu>
您应该在 searchView 中使用 android 支持小部件, 因此,请尝试检查您的布局和菜单是否正确,如果没有,请也编写布局代码,因为您的 Activity 应该也能正常工作。
问候。
【讨论】:
最低API等级为22时为什么还要使用support widget 我不确定,但如果你在你的应用主题中定义:android:theme="@style/Theme.AppCompat.Light.NoActionBar",你应该在你的xml中使用验证和限制,我想 好吧,如果它仅适用于 api 级别 22 及以上,那么主题应该是: android:theme="@android:style/Theme.Material.Light.NoActionBar" 作为示例中的 android 清单有【参考方案2】:编辑 3
所以,我下载了演示项目,导入 Android Studio,从清单中删除了错误的活动行(参见 Edit 2)。启动该项目,它立即生效。
另外,我刚刚注意到您正在使用 Eclipse。 Eclipse 不再受支持,您 SHOULD 迁移到 Android Studio。这很可能是与此相关的问题,因为手动导入支持库可能会导致您刚刚遇到的潜在错误。
要回答您的问题,为什么 LogCat 不告诉我的代码中的错误位置:它确实告诉您,但是,错误在支持库的源代码中。这(可能)是因为您使用的是 Eclipse,并且可能再次出现不兼容的支持库或其他编译器错误,因为使用了过时的 ADT 插件。
编辑 2
您要使用的库出现严重问题。演示项目的清单包含以下行:
<activity android:name=".ActivityA" android:theme="[...]" />
项目中没有ActivityA
。我认为您遇到的问题也与项目的整体状态有关(这是0.0.6-beta,这意味着它非常不可靠)。
不过,出于好奇,我会尝试找出错误。
编辑
我看到你也上传了源代码。您可能希望从 onCreate(...)
中删除 setTheme(...)
,因为它是多余的(您已经在清单中声明了主题)。
原创
首先,使用android:name=".MainActivity"
而不是android:name="MainActivity"
。您不需要 FQN(完全限定名称),因为 Android VM 知道基本包并根据它查找活动。
下一个问题是关于操作栏的。我没有看到 Activity 的来源,所以我只是根据错误消息在这里做出假设。您在 onResume()
中执行了一些操作,导致在空操作栏上调用 WindowDecorActionBar
。它的getDecorToolbar(View view)
试图找出给定视图的类。它应该是 DecorToolbar 或 Toolbar 的实例。您可能还有其他东西,所以它会转到 else 分支,在那里它会抛出 NullPointerException
,因为提供的视图确实为空。
我不确定您要做什么,您可能使用了错误的类,例如原生工具栏,而不是支持的工具栏,或者旧的 ActionBar。我想到的另一件事是,在完成视图内容的初始化后,您可能需要调用 super.onResume()
和 super.onCreate()
。无论如何,如果没有 Activity 源代码的相关部分,我不能肯定地说什么。
WindowDecorActionBar is here的来源。
【讨论】:
以上是关于为啥 LogCat 不告诉我的代码中的错误在哪里的主要内容,如果未能解决你的问题,请参考以下文章
如何在致命信号 11 之后使用 logcat 中的输出来找出我在 android 本机代码中从哪里得到错误?
我使用 volley 库来解析 json 和 logcat 没有显示错误,但屏幕上仍然没有输出。有人能告诉我哪里出错了吗?
为啥我在 intelliJ logcat 视图中看不到任何错误?