Я очень запутался, у меня есть приложение с 3 фрагментами и DrawerView.Мне нужно поместить элементы в список и иметь возможность прокручивать его вниз, если я изменяю макеты, я получаю ошибки, пожалуйста, посмотрите мои XML-файлы, + я немного запутался, где мне разместить свой контент (main_activity.xml илиfrag_home.xml), потому что если я добавлю что-либо в любой из них, появится контент.Спасибо.
activity_main
<!-- Layout to contain contents of main body of screen (drawer will slide over this) -->
<FrameLayout
android:id="@+id/content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
/>
</FrameLayout>
<!-- Container for contents of drawer - use NavigationView to make configuration easier -->
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:fitsSystemWindows="true"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_view" />
</android.support.v4.widget.DrawerLayout>
frag_home.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomeFragment">
</FrameLayout>
Это указано в моем Java-файле "Home Fragment"
public class HomeFragment extends Fragment {
public HomeFragment() {
// Required empty public constructor
}
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
return inflater.inflate(R.layout.fragment_home, container, false);
}
}
PS - В данный момент никакого контента вообще нет, появляется только панель инструментов с 3-точечной кнопкой, которая открывает ящик (или вы можете перемещаться, чтобы туда попасть), и есть меню для перехода к другим фрагментам.