2

Я следую за this учебник для раздувания фрагментов по умолчанию Активность навигационного ящика в студии android. после компиляции я получаю следующую ошибку в logcat Я не могу раздуть фрагмент.Невозможно раздувать фрагмент динамически

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.mayurn.sidepanel2/com.example.mayurn.sidepanel2.MainActivity}: android.view.InflateException: Binary XML file line #12: Binary XML file line #16: Error inflating class fragment 

MainActivity.java

public class MainActivity extends AppCompatActivity 
    implements NavigationView.OnNavigationItemSelectedListener { 

public static String TAG = "mytag"; 

@Override 
protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);   //set Action bar 
    setSupportActionBar(toolbar); 


    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);  //Fab snackbar 
    fab.setOnClickListener(new View.OnClickListener() { 
     @Override 
     public void onClick(View view) { 
      Snackbar.make(view, "Replace with your own action", Snackbar.LENGTH_LONG) 
        .setAction("Action", null).show(); 
     } 
    }); 


    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout);   //Drawer parameters 
    ActionBarDrawerToggle toggle = new ActionBarDrawerToggle(
      this, drawer, toolbar, R.string.navigation_drawer_open, R.string.navigation_drawer_close); 
    drawer.setDrawerListener(toggle); 
    toggle.syncState();           //show present view in drawer 

    NavigationView navigationView = (NavigationView) findViewById(R.id.nav_view); 
    navigationView.setNavigationItemSelectedListener(this); 

    displaySelectedFrame(R.id.nav_camera); 
} 

@Override 
public void onBackPressed() { 
    DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 
    if (drawer.isDrawerOpen(GravityCompat.START)) { 
     drawer.closeDrawer(GravityCompat.START); 
    } else { 
     super.onBackPressed(); 
    } 
} 

@Override 
public boolean onCreateOptionsMenu(Menu menu) {         //inflate the setting menu 
    // Inflate the menu; this adds items to the action bar if it is present. 
    getMenuInflater().inflate(R.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); 
} 

@SuppressWarnings("StatementWithEmptyBody") 
@Override 
public boolean onNavigationItemSelected(MenuItem item) { 

    displaySelectedFrame(item.getItemId()); 

    return true; 

} 

public void displaySelectedFrame(int itemId){ 

    Fragment f = null; 

    switch(itemId){ 

     case R.id.nav_camera: 
      f = new frag_1(); 
      break; 

     case R.id.nav_gallery: 
      f = new frag_2(); 
      break; 

     case R.id.nav_manage: 
      f = new frag_3(); 
      break; 
    } 

    if(f!=null){ 

     FragmentTransaction ft = getSupportFragmentManager().beginTransaction(); 
     ft.replace(R.id.content_fragment , f); 
     ft.commit(); 

    } 

DrawerLayout drawer = (DrawerLayout) findViewById(R.id.drawer_layout); 
    drawer.closeDrawer(GravityCompat.START); 
} 

}

Теперь важная часть - >>

Моя раскладка отношение, как это activity_main->(include)->app_bar_main->(include)->content_main->(contain)fragment

здесь файлы.

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_layout" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:openDrawer="start"> 

    <include 
     layout="@layout/app_bar_main" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" /> 

    <android.support.design.widget.NavigationView 
     android:id="@+id/nav_view" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_gravity="start" 
     android:fitsSystemWindows="true" 
     app:headerLayout="@layout/nav_header_main" 
     app:menu="@menu/activity_main_drawer" /> 

</android.support.v4.widget.DrawerLayout> 

app_bar_main.xml

<android.support.design.widget.CoordinatorLayout 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:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true" 
    tools:context="com.example.mayurn.sidepanel2.MainActivity"> 

    <android.support.design.widget.AppBarLayout 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:theme="@style/AppTheme.AppBarOverlay"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="?attr/colorPrimary" 
      app:popupTheme="@style/AppTheme.PopupOverlay" /> 

    </android.support.design.widget.AppBarLayout> 

    <include layout="@layout/content_main" /> 

    <android.support.design.widget.FloatingActionButton 
     android:id="@+id/fab" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_gravity="bottom|end" 
     android:layout_margin="@dimen/fab_margin" 
     app:srcCompat="@android:drawable/ic_dialog_email" /> 

</android.support.design.widget.CoordinatorLayout> 

content_main.xml

<RelativeLayout 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/content_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:paddingBottom="@dimen/activity_vertical_margin" 
    android:paddingLeft="@dimen/activity_horizontal_margin" 
    android:paddingRight="@dimen/activity_horizontal_margin" 
    android:paddingTop="@dimen/activity_vertical_margin" 
    app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    tools:context="com.example.mayurn.sidepanel2.MainActivity" 
    tools:showIn="@layout/app_bar_main"> 

    <fragment 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:id="@+id/content_fragment" 
     /> 

</RelativeLayout> 

Теперь я думаю, что этот фрагмент тега, потому что я не могу надуть фрагмент. Предварительный просмотр макета также дает ошибку рендеринга, потому что я не дал параметр android:name.

Но я хочу загрузить его после того, как пользователь нажмет элемент на панели навигации, чтобы он не использовался.

Если я добавлю эту строку android:name="com.example.mayurn.sidepanel2.frag_1", приложение запускается, но я получаю фрагментированные перекрывающиеся проблемы, такие как frag_1, сидит заметно, а другой фрагмент перекрывает его.

Я хочу загрузить фрагмент динамически, не указав параметр android:name.

Благодарим вас за помощь.

+4

Изменить '' '' '. Поскольку вы загружаете «Фрагмент» динамически, вам просто нужна пустая «ViewGroup» для хранения своих 'View'. Тег '' предназначен для статических 'Фрагментов'. –

+0

@MikeM. положите его на ответ. –

+1

Это круто. Вы можете принять опубликованный ответ, если хотите. Я искал дубликат, но на данный момент я не могу найти достойного. –

ответ

2

Используйте это вместо метки фрагмента.

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

спасибо, но это было решено @ mikeM.hould я жду, чтобы он ответил или принял это. Я смущен –