7

Podążałem za tutorialem na temat implementacji nawigacji z biblioteki wsparcia projektu i nie mogę uciec od tego błędu poniżej. Czytałem inne rozwiązania opublikowane na tej stronie, ale żaden z nich nie działał dla mnie, proszę o pomoc.Wystąpił błąd podczas pompowania klasy android.support.design.widget.NavigationView

Caused by: android.view.InflateException: Binary XML file line #28: Error inflating class android.support.design.widget.NavigationView 

activity_main.xml

<android.support.v4.widget.DrawerLayout 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" 
android:id="@+id/drawer" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:fitsSystemWindows="true" 
tools:context=".MainActivity"> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical"> 

    <include 
     android:id="@+id/tool_bar" 
     layout="@layout/tool_bar" /> 

    <FrameLayout 
     android:id="@+id/frame" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

    </FrameLayout> 

</LinearLayout> 

<android.support.design.widget.NavigationView 
    android:id="@+id/navigation_view" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_gravity="start" 
    app:headerLayout="@layout/header" 
    app:menu="@menu/drawer" /> 
</android.support.v4.widget.DrawerLayout> 

MainActiviy.java

import android.support.design.widget.NavigationView; 
import android.support.v4.widget.DrawerLayout; 
import android.support.v7.app.ActionBarDrawerToggle; 
import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
import android.support.v7.widget.Toolbar; 
import android.view.Menu; 
import android.view.MenuItem; 
import android.view.View; 
import android.widget.Toast; 

public class MainActivity extends AppCompatActivity { 

//Defining Variables 
private Toolbar toolbar; 
private NavigationView navigationView; 
private DrawerLayout drawerLayout; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 

    // Initializing Toolbar and setting it as the actionbar 
    toolbar = (Toolbar) findViewById(R.id.tool_bar); 
    setSupportActionBar(toolbar); 

    //Initializing NavigationView 
    navigationView = (NavigationView) findViewById(R.id.navigation_view); 

    //Setting Navigation View Item Selected Listener to handle the item click of the navigation menu 
    navigationView.setNavigationItemSelectedListener(new NavigationView.OnNavigationItemSelectedListener() { 

     // This method will trigger on item Click of navigation menu 
     @Override 
     public boolean onNavigationItemSelected(MenuItem menuItem) { 

      //Checking if the item is in checked state or not, if not make it in checked state 
      if (menuItem.isChecked()) menuItem.setChecked(false); 
      else menuItem.setChecked(true); 

      //Closing drawer on item click 
      drawerLayout.closeDrawers(); 

      //Check to see which item was being clicked and perform appropriate action 
      switch (menuItem.getItemId()) { 

       //Replacing the main content with ContentFragment Which is our Inbox View; 
       case R.id.inbox: 
        Toast.makeText(getApplicationContext(), "Inbox Selected", Toast.LENGTH_SHORT).show(); 
        ContentFragment fragment = new ContentFragment(); 
        android.support.v4.app.FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction(); 
        fragmentTransaction.replace(R.id.frame, fragment); 
        fragmentTransaction.commit(); 
        return true; 

       // For rest of the options we just show a toast on click 
       case R.id.starred: 
        Toast.makeText(getApplicationContext(), "Stared Selected", Toast.LENGTH_SHORT).show(); 
        return true; 
       case R.id.sent_mail: 
        Toast.makeText(getApplicationContext(), "Send Selected", Toast.LENGTH_SHORT).show(); 
        return true; 
       case R.id.drafts: 
        Toast.makeText(getApplicationContext(), "Drafts Selected", Toast.LENGTH_SHORT).show(); 
        return true; 
       case R.id.allmail: 
        Toast.makeText(getApplicationContext(), "All Mail Selected", Toast.LENGTH_SHORT).show(); 
        return true; 
       case R.id.trash: 
        Toast.makeText(getApplicationContext(), "Trash Selected", Toast.LENGTH_SHORT).show(); 
        return true; 
       case R.id.spam: 
        Toast.makeText(getApplicationContext(), "Spam Selected", Toast.LENGTH_SHORT).show(); 
        return true; 
       default: 
        Toast.makeText(getApplicationContext(), "Somethings Wrong", Toast.LENGTH_SHORT).show(); 
        return true; 
      } 
     } 
    }); 

    // Initializing Drawer Layout and ActionBarToggle 
    drawerLayout = (DrawerLayout) findViewById(R.id.drawer); 
    ActionBarDrawerToggle actionBarDrawerToggle = new ActionBarDrawerToggle(this, drawerLayout, toolbar, R.string.openDrawer, R.string.closeDrawer) { 

     @Override 
     public void onDrawerClosed(View drawerView) { 
      // Code here will be triggered once the drawer closes as we dont want anything to happen so we leave this blank 
      super.onDrawerClosed(drawerView); 
     } 

     @Override 
     public void onDrawerOpened(View drawerView) { 
      // Code here will be triggered once the drawer open as we dont want anything to happen so we leave this blank 
      super.onDrawerOpened(drawerView); 
     } 
    }; 

    //Setting the actionbarToggle to drawer layout 
    drawerLayout.setDrawerListener(actionBarDrawerToggle); 

    //calling sync state is necessay or else your hamburger icon wont show up 
    actionBarDrawerToggle.syncState(); 
} 

@Override 
public boolean onCreateOptionsMenu(Menu menu) { 
    // Inflate the menu; this adds items to the action bar if it is present. 
    getMenuInflater().inflate(R.menu.menu_main, menu); 
    return true; 
} 

@Override 
public boolean onOptionsItemSelected(MenuItem item) { 
    // Handle action bar item clicks here. The action bar will 
    // automatically handle clicks on the Home/Up button, so long 
    // as you specify a parent activity in AndroidManifest.xml. 
    int id = item.getItemId(); 

    //noinspection SimplifiableIfStatement 
    if (id == R.id.action_settings) { 
     return true; 
    } 
    return super.onOptionsItemSelected(item); 
} 
} 

build.gradle

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 23 
buildToolsVersion '23.0.0' 

defaultConfig { 
    applicationId "com.example.mobinamanzai.projectalpha" 
    minSdkVersion 17 
    targetSdkVersion 23 
    versionCode 1 
    versionName "1.0" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
    debug { 
     debuggable true 
    } 
} 
} 

dependencies { 
compile fileTree(dir: 'libs', include: ['*.jar']) 

compile 'com.android.support:support-v4:23.0.0' 
compile 'com.android.support:appcompat-v7:23.0.0' 
compile 'com.android.support:design:23.0.0' 
compile 'de.hdodenhof:circleimageview:1.3.0' 
} 

Edycja:

Monitorowanie stosu Powodowane przez: android.view.InflateException: Binarna linia pliku XML nr 28: Błąd pompowania klasy android.support.design.widget.NavigationView Wywołany przez: java.lang.reflect.InvocationTargetException Spowodowany przez: android. view.InflateException: Binarny plik XML wiersz nr 2: Błąd nadpisujący klasę android.widget.RelativeLayout Wywołany przez: java.lang.reflect.InvocationTargetException Wywołany przez: java.lang.OutOfMemoryError: Nie można przydzielić przypisania bajtów 276203532 za pomocą 12108696 za darmo bajty i 174MB aż OOM

EDIT 2: problem wydaje się być w header.xml

+0

możesz dodać więcej ze swojego powiązanego śledzenia stosu –

+0

@Diyoda właśnie go edytował –

Odpowiedz

6

To al l początek stąd

Caused by: java.lang.OutOfMemoryError: Failed to allocate a 276203532 byte allocation with 12108696 free bytes and 174MB until OOM at dalvik.system.VMRuntime.newNonMovableArray(Native Method) at android.graphics.BitmapFactory.nativeDecodeAsset(Native Method) at android.graphics.BitmapFactory.decodeStream(BitmapFactory.java:609) at android.graphics.BitmapFactory.decodeResourceStream(BitmapFactory.java:444) 

Ponieważ obraz używasz do nagłówka lub jako elementy w swojej navigationdrawer ma wyższą rozdzielczość niż aplikacja przydzielonej pamięci może obsługiwać. Zmniejsz rozmiary obrazów i sprawdź. To rozwiąże problem. Jeśli dodasz więcej śladu stosu poniżej, możesz znaleźć element, który powoduje ten problem.

+1

Bez problemu. Cieszę się, że mogę być przy każdej pomocy. –

6

Wystąpił błąd nadmuchiwania dla widoku Nawigacja po przejściu do wersji biblioteki wsparcia Android w wersji 23.1.0, skompilowania pakietu SDK w wersji 23 i kompilacji narzędzi w wersji 23.0.2.

Dla mnie okazało się to zagadnieniem progu. Dodaj następujący wiersz do konfiguracji PROGUARD:

-keep class android.support.v7.widget.LinearLayoutManager { *; } 

Zobacz Android Open Source Project Issue Tracker

+0

Dzięki człowieku! Miałem dokładnie ten sam problem i nie wiem, jak bym to rozwiązał bez twojej pomocy :). – box

+0

Dla mnie zamknięcie Force powiedział: Caused by: java.lang.ClassNotFoundException: android.support.v7.widget.LinearLayoutManager, a tym samym poprawka dla mnie – neelabh

+0

To faktycznie rozwiązuje inny problem, ale wciąż miło mieć tutaj – frostymarvelous

1

Tak, ja też dostał ten sam błąd. Jeśli spojrzeć w błąd ostrożnie u znajdą następujących linii Spowodowany przez: java.lang.OutOfMemoryError: Nie można przydzielić alokacji 276203532 bajtów z 12108696 wolnych bajtów i 174MB aż OOM

To jest puszka rozwiązany poprzez zmniejszenie rozdzielczości obrazów które są używane do menu.

Powiązane problemy