Вот разметка главной активности в ней фрагмент и нижнее меню
<RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/container"
android:background="@color/backgroudMainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.egor.xcryptex.MainActivity">
>
<RelativeLayout
android:id="@+id/contentContainer"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/bottom_navigation">
</RelativeLayout>
<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
app:itemBackground="@color/backgroundLayoutMenu"
app:itemIconTint="@drawable/collors_buttom_menu"
app:itemTextColor="@color/white"
app:menu="@menu/botton_menu_navigation"
/>
</RelativeLayout>
В контейнер вкладывается фрагмент вот его разметка в нем черный фон:
<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/black_color"
tools:context="com.example.egor.xcryptex.fragments.FragmentPurse">
</RelativeLayout>
Вот как открываю
fragmentManager.beginTransaction().replace(R.id.container,fragmentPurse,TAG_4).commit()
Код код фрагмента:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
return inflater.inflate(R.layout.fragment_fragment_purse, container, false);
}
При открытии фрагмент загораживает всю активность(и она становиться черной как его фон) . Нужно чтоб он не выходил за рамки своего контейнера -"container" . Помогите пожалуйста, уже второй день мучаюсь с этим((