Как можно установить вид на другой вид? - PullRequest
0 голосов
/ 04 октября 2018

У меня есть фрагмент. Я нажимаю на другой фрагмент, когда нажимаю на текстовое представление.но когда во втором фрагменте показана кнопка (btn_fragmentAccount_register ") первого фрагмента на моем фрагменте. во втором фрагменте есть обзор переработчика, который показывает продукты. но кнопка первого фрагмента еще видна. Я изменяю высоту темы, но не работает, что должноЯ делаю сейчас?

первый фрагмент 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>

второй фрагмент 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>

элемент утилизатора 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>

фрагменткод транзакции котлин:

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()
    }

1 Ответ

0 голосов
/ 04 октября 2018
Fragment fragment = new NameofFragment();
        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
        transaction.replace(R.id.frmFragment, fragment).commit();
<FrameLayout
    android:id="@+id/frmFragment"
    android:layout_width="match_parent"
    android:layout_height="match_parent"/>
...