Как объединить animation_list с другим фоном - PullRequest
0 голосов
/ 16 января 2020

У меня есть два фона, которые я хочу применить к одной кнопке. Первый фон о форме, а второй список анимации. Проблема в том, что если я хочу включить анимацию, мне нужно установить список анимаций в качестве фона кнопки, в этом случае я не могу установить форму кнопки, поскольку ее необходимо установить в качестве фона кнопки.

Здесь у вас есть кнопка xml:

<Button
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:padding="@dimen/medium_padding"
                    android:text="Search here !"
                    android:textAllCaps="false"
                    android:background="@drawable/gradient_list" /> 

Изогнутая форма xml

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="30dp" />
<solid android:color="@color/colorWhite" />
<stroke
    android:width="1dp"
    android:color="@color/colorYellow" />
</shape>

Список анимаций

<animation-list xmlns:android="http://schemas.android.com/apk/res/android">

    <item android:drawable="@drawable/gradient_1"
        android:duration="4000"/>

    <item android:drawable="@drawable/gradient_2"
        android:duration="2000"/>

    <item android:drawable="@drawable/gradient_3"
        android:duration="4000"/>

</animation-list>
...