J'ai toujours utilisé RelativeLayout chaque fois que j'avais besoin d'un conteneur View, en raison de sa flexibilité, même si je voulais juste afficher quelque chose de vraiment simple. Est-ce correct de le faire, ou devrais-je essayer d'utiliser un LinearLayout quand je le peux, du point de vue des performances / …
J'ai la disposition de base suivante <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"> <LinearLayout android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="@drawable/title_bar_background"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_gravity="center_horizontal" android:textAppearance="?android:attr/textAppearanceLarge" android:padding="10dp" android:text="HELLO WORLD" /> </LinearLayout> <LinearLayout> Il semble que le xml soit correct, mais le texte est aligné à gauche. La vue de texte occupe toute la largeur du …
Je me demandais s'il était possible de regrouper chacun RadioButtondans un unique en RadioGroup conservant la même structure. Ma structure ressemble à ceci: LinearLayout_main LinearLayout_1 RadioButton1 LinearLayout_2 RadioButton2 LinearLayout_3 RadioButton3 Comme vous pouvez le voir, maintenant chacun RadioButtonest un enfant de différent LinearLayout. J'ai essayé d'utiliser la structure ci-dessous, mais …
J'essaye d'ajouter un diviseur à une disposition linéaire horizontale mais je ne vais nulle part. Le séparateur ne s'affiche tout simplement pas. Je suis un débutant total avec Android. Voici mon XML de mise en page: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity" > <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/llTopBar" android:orientation="horizontal" android:divider="#00ff00" android:dividerPadding="22dip" …
J'ai ce code dans mon application: LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(WRAP_CONTENT, WRAP_CONTENT); et je veux juste définir l'orientation de LinearLayout sur vertical. L'équivalent en XML est: android:orientation="vertical" Comment puis-je le faire dans le code, sans XML?
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.