Xamarin Listview не следует направлению RTL - PullRequest
0 голосов
/ 08 июня 2018

Хелли, ребята.Я изучаю xamarin и пытаюсь сделать базовое приложение для Android.Это приложение в направлении RTL.Теперь у меня есть основной вид Listview, который содержит список пользовательских макетов.Вот посмотрите на этот пользовательский макет.Я RTL в Xamarin Designer Windows.enter image description here

И это код Axaml макета

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layoutDirection="rtl"
android:textDirection="rtl">
<LinearLayout
    android:orientation="vertical"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/linearLayout2">
    <ImageView
        android:src="@drawable/rating4"
        android:id="@+id/imgRating"
        android:layout_width="70dp"
        android:layout_height="20dp"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp"
        android:layout_marginTop="10dp" />
    <ImageView
        android:src="@drawable/defaultthumbnail"
        android:id="@+id/imgThumbnail"
        android:layout_width="match_parent"
        android:layout_height="70dp"
        android:layout_marginLeft="20dp"
        android:layout_marginRight="20dp" />
    <TextView
        android:text="10,000 تومان"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:textStyle="bold"
        android:id="@+id/foodPrice"
        android:layout_marginLeft="5dp"
        android:textDirection="rtl" />
</LinearLayout>
<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="10dp"
    android:layout_marginRight="20dp">
    <TextView
        android:text="نام غذا"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/txtFoodName"
        android:textSize="20sp"
        android:textStyle="bold" />
    <TextView
        android:text="توضیحات غذا"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textSize="12sp"
        android:id="@+id/txtFoodDesc" />
    <TextView
        android:text="تاریخ"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/txtDate"
        android:textSize="8sp"
        android:textAllCaps="false" />
    <TextView
        android:text="آشپز"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/txtCook"
        android:textSize="8sp"
        android:textAllCaps="false" />
</LinearLayout>

И это мой основной макет, который есть в этом списке.

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/mainContentLayout"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:showIn="@layout/app_bar_main"
    android:layoutDirection="rtl"
    android:textDirection="rtl">
    <ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/mainContentListView"
        android:layoutDirection="rtl"
        android:textDirection="rtl" />
</LinearLayout>

Но когда я запускаю это, это то, что я получаю

enter image description here

, как вы можете, эти 2 линейные разметки внутри следуютПравило RTL, но инвертированы.

Ответы [ 2 ]

0 голосов
/ 11 июня 2018

О android:supportsRtl="true", вы можете сослаться на это , значение по умолчанию - false.

Начиная с вашего layout axaml code, оно отображается в дизайне VS как:

enter image description here

Но он отображается в дизайне AS как:

enter image description here

Это то же самое, что ирезультат, что вы бежали.

Итак, что-то не так с дизайном VS.

Если я не прочитал ваш вопрос, вы хотите получить:

enter image description here

Итак, вам нужно изменить layout axaml code на ниже:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layoutDirection="rtl"
    android:textDirection="rtl">
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/linearLayout2">
        <ImageView
            android:src="@drawable/pause"
            android:id="@+id/imgRating"
            android:layout_width="70dp"
            android:layout_height="20dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp"
            android:layout_marginTop="10dp" />
        <ImageView
            android:src="@drawable/dapao"
            android:id="@+id/imgThumbnail"
            android:layout_width="match_parent"
            android:layout_height="70dp"
            android:layout_marginLeft="20dp"
            android:layout_marginRight="20dp" />
        <TextView
            android:text="10,000 تومان"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="20sp"
            android:textStyle="bold"
            android:id="@+id/foodPrice"
            android:layout_marginLeft="5dp"
            android:textDirection="rtl" />
    </LinearLayout>
<View
    android:layout_weight="1"
    android:layout_width="0dp"
    android:layout_height="match_parent"/>
    <LinearLayout
        android:orientation="vertical"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:layout_marginRight="20dp">
        <TextView
            android:text="نام غذا"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/txtFoodName"
            android:textSize="20sp"
            android:textStyle="bold" />
        <TextView
            android:text="توضیحات غذا"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:textSize="12sp"
            android:id="@+id/txtFoodDesc" />
        <TextView
            android:text="تاریخ"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:id="@+id/txtDate"
            android:textSize="8sp"
            android:textAllCaps="false" />
        <TextView
            android:text="آشپز"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/txtCook"
            android:textSize="8sp"
            android:textAllCaps="false" />
    </LinearLayout>
</LinearLayout>
0 голосов
/ 10 июня 2018

У меня была та же проблема, и я исправил ее, добавив в манифест приложения следующее:

<manifest>
    <application>
    android:supportsRtl="true"
    </application>
</manifest>
  • эмулятор по умолчанию и предварительный просмотр не работали с языками "RTL",попробуйте протестировать на реальном устройстве Android или попробуйте xamarin live player.

  • также некоторые устройства Android заставляют «ltr», когда язык интерфейса Android - английский, попробуйте изменить язык Android на язык «RTL».

...