Изменить макет существующего представления - PullRequest
0 голосов
/ 03 апреля 2019

Я скачал библиотеку с Github - https://github.com/riyagayasen/Android_accordion_view и добавил ее в качестве модуля в свой проект.
Я хочу изменить макет представления, потому что по умолчанию не совсем подходит для моего дизайна. По умолчанию это выглядит так: https://pp.userapi.com/c855132/v855132038/18192/AJnXb6Z7l4c.jpg; Я хочу, чтобы это выглядело так: https://pp.userapi.com/c855132/v855132038/18178/VyKEhn6ERuk.jpg;, но все, чего я достиг, это: https://pp.userapi.com/c848416/v848416709/1602db/3JjKU9eMj0g.jpg.
Понятно, что я должен изменить макет AccordionView.
Путь к XML макета: Android_accordion_view / easyaccordion / src / main / res / layout / accordion.xml
Я уверен, что AccordionView использует именно этот макет, потому что в AccordionView.java есть метод, который раздувает этот XML как макет:

private void initializeViews(Context context) {

        inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        //here it happens
        LinearLayout accordionLayout = (LinearLayout) inflater.inflate(R.layout.accordion, null); 


        partition = accordionLayout.findViewById(R.id.partition);
        heading = (TextView) accordionLayout.findViewById(R.id.heading);
        paragraph = (RelativeLayout) accordionLayout.findViewById(R.id.paragraph_layout);
        dropdownImage = (ImageView) accordionLayout.findViewById(R.id.dropdown_image);
        dropupImage = (ImageView) accordionLayout.findViewById(R.id.dropup_image);
        headingLayout = (LinearLayout) accordionLayout.findViewById(R.id.heading_layout);
        paragraph.removeAllViews();

        int i;
        children = new View[getChildCount()];
        for (i = 0; i < getChildCount(); i++) {
            children[i] = getChildAt(i);
        }
        removeAllViews();
        for (i = 0; i < children.length; i++) {
            paragraph.addView(children[i]);
        }


        paragraphBottomMargin = ((LinearLayout.LayoutParams) paragraph.getLayoutParams()).bottomMargin;
        paragraphTopMargin = ((LinearLayout.LayoutParams) paragraph.getLayoutParams()).topMargin;

        addView(accordionLayout);


    }


Проблема в том, что если я изменю accordion.xml, то на самом деле ничего не изменится, когда я добавлю AccordionView в макет моего фрагмента, и это очень странно.

Я предполагаю, что у меня что-то не так в зависимостях Gradle или где-то рядом, но я не могу понять это.

Это xml, для которого я хочу изменить макет по умолчанию.

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout 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:orientation="vertical"
    android:layout_width="match_parent"
    android:background="@drawable/accordion_background"
    android:layout_height="wrap_content">

    <android.support.constraint.ConstraintLayout
        android:id="@+id/heading_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <CheckBox
            android:id="@+id/favourite_checkBox"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:layout_marginTop="2dp"
            android:layout_marginEnd="8dp"
            android:layout_marginRight="8dp"
            android:button="@drawable/star_checkbox"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="1.0"
            app:layout_constraintStart_toEndOf="@+id/heading"
            app:layout_constraintTop_toTopOf="parent" />

        <ImageView
            android:id="@+id/dropup_image"
            android:layout_width="34dp"
            android:layout_height="26dp"
            android:layout_marginTop="2dp"
            android:scaleType="fitCenter"
            android:src="@drawable/ic_arrow_up"
            android:visibility="gone"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="@+id/favourite_checkBox"
            app:layout_constraintStart_toStartOf="@+id/favourite_checkBox"
            app:layout_constraintTop_toBottomOf="@+id/favourite_checkBox" />

        <ImageView
            android:id="@+id/dropdown_image"
            android:layout_width="0dp"
            android:layout_height="18dp"
            android:layout_marginTop="2dp"
            android:layout_marginBottom="2dp"
            android:scaleType="fitCenter"
            android:src="@drawable/ic_arrow_down"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="@+id/favourite_checkBox"
            app:layout_constraintStart_toStartOf="@+id/favourite_checkBox"
            app:layout_constraintTop_toBottomOf="@+id/favourite_checkBox" />

        <TextView
            android:id="@+id/heading"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:layout_marginStart="8dp"
            android:layout_marginLeft="8dp"
            android:text="Title"
            android:textStyle="bold"
            android:visibility="visible"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

    </android.support.constraint.ConstraintLayout>

    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:id="@+id/partition"
        android:background="@android:color/darker_gray" />

    <RelativeLayout
        android:id="@+id/paragraph_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:animateLayoutChanges="true"
        android:orientation="vertical"
        android:paddingTop="10dp"
        android:visibility="visible"
        tools:visibility="visible">

    </RelativeLayout>

</LinearLayout>

Да, я понимаю, что макет заголовка по умолчанию - LinearLayout, но даже если я изменю размер выпадающего значка в макете по умолчанию, он останется тем же, когда я использую вид.

Итак, мой вопрос: как сделать так, чтобы макет выше отображался при использовании вида?

Я предоставлю любой ваш код по вашему запросу.
Спасибо.

...