I have a fragment.I go to another fragment when I click on a textview. but when second fragment show a button(btn_fragmentAccount_register") of first fragment is on my fragment. in my second fragment is a recyclerview that show the products.but a button of first fragment still visible.I change elevation of theme but doesnt work what should I do now?
first fragment xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="@color/white"
android:id="@+id/rel_accountFragment_parent"
android:layout_height="match_parent">
<Button
android:layout_marginTop="8dp"
android:layout_marginRight="8dp"
android:layout_alignParentRight="true"
android:textColor="@color/white"
android:layout_below="@id/edt_fragmentAccount_pass"
android:background="@drawable/shape_btn"
android:text="ورود"
android:id="@+id/btn_fragmentAccount_register"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/txt_fragmentAccount_favorite"
android:layout_marginRight="8dp"
android:layout_alignParentRight="true"
android:layout_below="@+id/view_fragmentAccount_line"
android:text="اگهی های نشان شده"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
second fragment xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:background="@color/white"
android:layout_height="match_parent">
<android.support.v7.widget.RecyclerView
android:background="@color/white"
android:id="@+id/rv_favFragment_list"
android:layout_marginTop="8dp"
android:layout_below="@+id/toolbar_main_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>
recycler item xml:
<android.support.v7.widget.CardView
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_marginRight="8dp"
android:foreground="?android:attr/selectableItemBackground"
android:clickable="true"
android:id="@+id/rel_adsRow_parent"
android:layout_marginLeft="8dp"
android:layout_marginTop="4dp"
android:layout_marginBottom="4dp"
android:layout_height="wrap_content">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/img_adsRow_icon"
tools:src="@mipmap/ic_launcher"
android:layout_margin="8dp"
android:layout_alignParentLeft="true"
android:layout_width="90dp"
android:layout_height="90dp" />
<TextView
android:textColor="@color/black"
android:maxLines="1"
android:ellipsize="end"
android:id="@+id/txt_adsRow_title"
android:layout_margin="8dp"
android:layout_alignParentRight="true"
android:layout_toRightOf="@id/img_adsRow_icon"
tools:text="خودروی سمند"
android:textSize="18sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_marginRight="8dp"
android:layout_alignParentRight="true"
android:id="@+id/txt_adsRow_price"
android:layout_below="@id/txt_adsRow_title"
tools:text="1500000 تومان"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_marginRight="8dp"
android:layout_alignParentRight="true"
android:layout_below="@id/txt_adsRow_price"
tools:text="لحظاتی پیش"
android:id="@+id/txt_adsRow_date"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</android.support.v7.widget.CardView>
fragment transaction kotlin code:
txtFav.setOnClickListener{
var newContext=context as AppCompatActivity
manager=newContext.supportFragmentManager
var transaction=manager.beginTransaction()
var favFragment=FavFragment()
transaction.add(R.id.rel_accountFragment_parent,favFragment)
transaction.addToBackStack(null)
transaction.commit()
}