Mayil-AI-Sandbox / vlc-android

Clone of vlc android for debugging
GNU General Public License v2.0
0 stars 0 forks source link

DisplaySettings: overlap of group label and spinner in french #2

Open NobleMathews opened 1 month ago

NobleMathews commented 1 month ago

In the video display settings, the "Group by" textView and Spinner overlap

image

mayil-ai[bot] commented 1 month ago
<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal">

    <TextView
        android:id="@+id/group_by_textView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="@string/group_by" />

    <Spinner
        android:id="@+id/group_by_spinner"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1" />
</LinearLayout>
<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <TextView
        android:id="@+id/group_by_textView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toStartOf="@id/group_by_spinner"
        app:layout_constraintTop_toTopOf="parent"
        android:text="@string/group_by" />

    <Spinner
        android:id="@+id/group_by_spinner"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toEndOf="@id/group_by_textView"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="@id/group_by_textView" />
</androidx.constraintlayout.widget.ConstraintLayout>
<string name="group_by">Trier par</string>

Here are some code snippets that may help you get started:

💡 To rerun Mayil, comment mayil-ai rerun. Mayil will incorporate any new context added to the ticket. Include details in your rerun comment to guide Mayil!