为什么LogCat不能告诉我的代码中的错误

时间:2015-08-21 20:15:09

标签: android nullpointerexception logcat android-logcat

我正在尝试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}... 所以我可能在某个地方写了错误的名字,比如在清单或其他什么地方?就在case,我也发布了清单代码。

enter image description here

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_width="match_parent"
    android:layout_height="match_parent"

    android:layout_gravity="center_vertical"

    android:focusable="true"
    android:clickable="true"
    android:background="?android:attr/selectableItemBackground">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"

        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>

2 个答案:

答案 0 :(得分:1)

编辑3

因此,我下载了导入Android Studio的演示项目,从清单中删除了错误的活动行(参见编辑2 )。启动项目,它立即工作。

我也注意到你正在使用Eclipse。 Eclipse不再受支持,您SHOULD迁移到Android Studio。这很可能是一个与此相关的问题,因为手动导入支持库可能会导致您刚刚遇到的潜在错误。

为了回答你的问题,为什么LogCat不能告诉我的代码中的错误:它确实告诉你,但是,错误是在支持lib的源代码中。这可能是(可能)由于您使用Eclipse而且可能会出现不兼容的支持库或其他编译器错误,因为使用了过时的ADT插件。

编辑2

您想要使用的库有些严重错误。演示项目的清单包含以下行:

<activity  android:name=".ActivityA" android:theme="[...]" />

项目中没有ActivityA。我认为你遇到的问题也与项目的总体状态有关(这是0.0.6-beta,这意味着它非常不可靠)。 出于好奇,我会尝试找出错误。

修改

我看到你也上传了这个来源。您可能希望从setTheme(...)中移除onCreate(...),因为它是多余的(您已经在清单中声明了主题)。

原始

首先,使用android:name=".MainActivity"代替android:name="MainActivity"。您不需要FQN(完全限定名称),因为Android VM知道基本包并根据该活动查找活动。

下一个问题是围绕操作栏。我没有看到Activity的来源,所以我只是根据错误信息做出假设。您在onResume()中执行的操作会导致在空操作栏上调用WindowDecorActionBar。它的getDecorToolbar(View view)试图弄清楚给定视图的类。它应该是DecorToolbar或Toolbar的实例。你可能还有别的东西,所以它会转到else分支,它会抛出NullPointerException因为提供的视图确实是null。 我不确定你要做什么,你可能会使用错误的类,例如本机工具栏而不是支持一个,或旧的ActionBar。我想到的另一件事是,您可能希望在完成初始化视图内容后调用super.onResume()super.onCreate()。无论如何,如果没有活动来源的相关部分,我无法肯定地说出任何内容。

WindowDecorActionBar is here的来源。

答案 1 :(得分: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支持小部件, 因此,请尝试检查您的布局和菜单是否正确,如果没有,请编写布局代码,因为您的活动也应该正常工作。

问候。