У указанного ребенка уже есть родитель. Вы должны сначала вызвать removeView () у родителя ребенка. Диалог нижнего листа - PullRequest
0 голосов
/ 19 апреля 2020

У меня есть фрагмент дневника. Когда я нажимаю кнопку отсюда, я пытаюсь создать объект MaterialCardView на главном экране. Но я получаю сообщение об ошибке, о котором упоминала в заголовке. Я пытаюсь добавить этот код программно .

      <com.google.android.material.card.MaterialCardView
            android:id="@+id/materialTaslak"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:backgroundTint="?attr/bottombarcolor"
            app:cardElevation="2dp"
            android:layout_marginTop="4dp">
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:orientation="horizontal"
                android:elevation="16dp">
                <CheckBox
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    app:useMaterialThemeColors="false"
                    android:gravity="center"
                    android:textAlignment="center"/>
                <LinearLayout
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:orientation="vertical"
                    android:layout_weight="1"
                    android:gravity="center">
                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="görev basşlığı"
                        android:fontFamily="@font/regularopensans"
                        android:textSize="16sp"
                        android:textColor="?attr/textcolor"
                        android:singleLine="true">
                    </TextView>
                    <TextView
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:text="görev tarihi"
                        android:fontFamily="@font/lightopensans"
                        android:textSize="14sp"
                        android:textColor="?attr/colorPrimary"
                        android:singleLine="true">
                    </TextView>
                </LinearLayout>

            </LinearLayout>

        </com.google.android.material.card.MaterialCardView>

это мой черновой код, который я упоминал выше. Коды, которые я использовал, приведены ниже;

<merge xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto">
   <com.google.android.material.appbar.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true"
    android:backgroundTint="?attr/bottombarcolor"
    android:elevation="4dp">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:menu="@menu/mtrl_theme_switcher_menu"
        app:titleTextColor="?attr/textcolor"
        android:backgroundTint="?attr/bottombarcolor"
        android:elevation="4dp"/>
</com.google.android.material.appbar.AppBarLayout>

<androidx.core.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    android:background="?attr/backgroundColor">
    <LinearLayout
        android:id="@+id/ll_content"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingTop="10dp"
        android:padding="16dp"
        android:orientation="vertical"
        android:background="?attr/backgroundColor">
            <LinearLayout
                android:id="@+id/linearlayout1"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:orientation="horizontal"
                android:elevation="16dp">
                <LinearLayout
                    android:id="@+id/linearlayout2"
                    android:layout_width="0dp"
                    android:layout_height="match_parent"
                    android:orientation="vertical"
                    android:layout_weight="1"
                    android:gravity="center">

                </LinearLayout>
            </LinearLayout>

    </LinearLayout>
   </androidx.core.widget.NestedScrollView>
 </merge>

Я получаю сообщение об ошибке в этой части;

@Override
   public void getView(View view) {

    txt_baslik=new TextView(this);
    txt_tarih=new TextView(this);
    checkBox=new CheckBox(this);
    mCardView=new MaterialCardView(this);

    LinearLayout.LayoutParams layoutparams = new LinearLayout.LayoutParams(
            LinearLayout.LayoutParams.MATCH_PARENT,
            LinearLayout.LayoutParams.WRAP_CONTENT

    );

    mCardView.setLayoutParams(layoutparams);
    mCardView.setElevation(2);

    txt_baslik.setLayoutParams(layoutparams);
    txt_tarih.setLayoutParams(layoutparams);

    linearLayout.addView(mCardView);
    mCardView.addView(linearLayout1);
    linearLayout1.addView(linearLayout2);
    linearLayout2.addView(txt_baslik);
    linearLayout2.addView(txt_tarih);
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...