J'ai du mal à appliquer un arrière-plan en dégradé à un LinearLayout.
Cela devrait être relativement simple d'après ce que j'ai lu, mais cela ne semble pas fonctionner. À titre de référence, je développe sur la version 2.1-update1.
header_bg.xml :
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="90"
android:startColor="#FFFF0000"
android:endColor="#FF00FF00"
android:type="linear"/>
</shape>
main_header.xml :
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:orientation="horizontal"
android:background="@drawable/header_bg">
</LinearLayout>
Si je remplace @drawable/header_bg par une couleur, par exemple #FF0000, tout fonctionne parfaitement. Est-ce que quelque chose d'évident m'échappe ici ?
0 votes
Android:backgroundTint Android:backgroundTintMode stackoverflow.com/a/43341289/3209132