Background pas pris en compte

Background pas pris en compte - Android - Programmation

Marsh Posté le 05-09-2021 à 10:08:32    

Bonjour tout le monde !
 
Je me fais une petite app en java pour réviser mes mots et expressions anglais.
 
J'ai un problème : j'ai un XML (dans drawable) pour définir un button
 
Il n'est pas pris en compte.
 
Mon round_button.xml :
 
https://i.imgur.com/Cen4FmH.png
 
 
Mon activity_main : (round_button n'est pas souligné en rouge ni rien, il semble bien trouvé... Et ciel_bleu_mod_vr lui est bien appliqué).  Ce code xml provient de ma précédente appli qui fonctionne (round_button est bien appliqué à mes boutons)
 

Code :
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3.     xmlns:android="http://schemas.android.com/apk/res/android"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     android:orientation="vertical"
  8.     tools:context=".MainActivity"
  9.     android:background="@drawable/ciel_bleu_mod_vr">
  10.     <!--Titre et corps  -->
  11.     <LinearLayout
  12.         android:layout_width="match_parent"
  13.         android:layout_height="match_parent"
  14.         android:orientation="vertical"
  15.         android:weightSum="11">
  16.         <TextView
  17.             android:id="@+id/activity_main_title"
  18.             android:layout_width="match_parent"
  19.             android:layout_height="0dp"
  20.             android:layout_weight="10"
  21.             android:textColor="#FF7F00"
  22.             android:textSize="20sp"
  23.             android:textStyle="bold"
  24.             android:gravity="center"
  25.             android:padding="10dp"
  26.             android:fontFamily="sans-serif-black"
  27.             android:text="BlaBla">
  28.         </TextView>
  29.         <Button
  30.             android:id="@+id/activity_main_go_btn"
  31.             android:layout_width="match_parent"
  32.             android:layout_height="0dp"
  33.             android:layout_margin="5dp"
  34.             android:layout_weight="1"
  35.             android:textColor="#0076CD"
  36.             android:background="@drawable/round_button"
  37.             android:textSize="30sp"
  38.             android:text="GO"/>
  39.     </LinearLayout>
  40. </LinearLayout>


 
Le bouton devrait être orange et avec des bords plus arrondis
https://i.imgur.com/GFbBbOV.png
 
Ma précédente app :
https://i.imgur.com/QTutWyh.png
 
Est ce que vous savez ce qu'il se passe ?  Je vous remercie d'avance


Message édité par Lt Ripley le 05-09-2021 à 10:09:13

---------------
Mes apps  |  Viens coder  |  Mon topal de vente
Reply

Marsh Posté le 05-09-2021 à 10:08:32   

Reply

Marsh Posté le 05-09-2021 à 13:16:17    

Je m'aperçois que la forme est prise en compte mais pas la couleur... [:zzozo]


Message édité par Lt Ripley le 05-09-2021 à 17:42:08

---------------
Mes apps  |  Viens coder  |  Mon topal de vente
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed