Расположение правого ящика вне поля

#android #drawerlayout

#Android #drawerlayout

Вопрос:

Я использую DrawerLayout в своем приложении. Я тестирую это в Samsung note 3 и samsung S4, все в порядке. Но когда он тестируется на Samsung S3, макет испортился. Пожалуйста, обратитесь к изображению ниже

Тест в Samsung Note 3 и Samsung S4: http://www.imagesup.net/?di=1514046988962

Тест в Samsung S3: http://www.imagesup.net/?di=14140469921515

Мой код xml-макета приведен ниже :

  <include
    android:id="@ id/shopping_cart_slider"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="end"
    layout="@layout/shopping_cart_redesign"
    android:choiceMode="singleChoice" />
  

И это макет, который включал :

      <?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/grey_register_text" >

    <LinearLayout
        android:id="@ id/shopping_cart_redesign_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/grey_register_text"
        android:orientation="vertical" >

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content" >

            <RelativeLayout
                android:id="@ id/info_container"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:background="@android:color/white"
                android:orientation="vertical" >

                <ImageView
                    android:id="@ id/logo_image"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_centerInParent="true"
                    android:layout_gravity="center"
                    android:contentDescription="@string/desc_list_item_icon" />

                <com.zukami.apps.dev.blynk.util.CustomListView
                    android:id="@ id/list_shopping_cart"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@ id/logo_image"
                    android:background="@android:color/white"
                    android:divider="@color/grey_register_text"
                    android:dividerHeight="1dp" >
                </com.zukami.apps.dev.blynk.util.CustomListView>

                <View
                    android:id="@ id/border"
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:layout_below="@ id/list_shopping_cart"
                    android:layout_marginTop="5dp"
                    android:background="@color/grey_register_text" />

                <RelativeLayout
                    android:id="@ id/total_layout"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@ id/border"
                    android:layout_marginTop="10dp" >

                    <LinearLayout
                        android:id="@ id/total_text_container"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentLeft="true"
                        android:layout_marginLeft="2dp"
                        android:orientation="vertical" >

                        <TextView
                            android:id="@ id/total_text"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingLeft="10dp"
                            android:text="@string/total"
                            android:textSize="18sp"
                            android:textStyle="bold" />

                        <TextView
                            android:id="@ id/merchandise_total"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingLeft="10dp"
                            android:text="@string/merchandise_total"
                            android:textSize="15sp" />

                        <TextView
                            android:id="@ id/loyalty"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingLeft="10dp"
                            android:text="@string/loyalty"
                            android:textSize="15sp" />
                    </LinearLayout>

                    <LinearLayout
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentRight="true"
                        android:layout_marginRight="10dp"
                        android:orientation="vertical" >

                        <TextView
                            android:id="@ id/total_number"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingLeft="5dp"
                            android:textSize="18sp"
                            android:textStyle="bold" />

                        <TextView
                            android:id="@ id/total_points"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:paddingLeft="5dp"
                            android:textSize="15sp" />
                    </LinearLayout>
                </RelativeLayout>

                <View
                    android:id="@ id/border_two"
                    android:layout_width="match_parent"
                    android:layout_height="1dp"
                    android:layout_below="@ id/total_layout"
                    android:layout_marginLeft="10dp"
                    android:layout_marginRight="10dp"
                    android:layout_marginTop="5dp"
                    android:background="@android:color/black" />

                <Button
                    android:id="@ id/confirm_button"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_below="@ id/border_two"
                    android:layout_marginBottom="2dp"
                    android:layout_marginLeft="30dp"
                    android:layout_marginRight="30dp"
                    android:layout_marginTop="10dp"
                    android:background="@drawable/grey_shopping_cart_button"
                    android:gravity="center|center_horizontal"
                    android:text="@string/confirm_order"
                    android:textColor="@android:color/white"
                    android:textSize="16sp"
                    android:textStyle="bold" />

                <View
                    android:id="@ id/space"
                    android:layout_width="match_parent"
                    android:layout_height="2dp"
                    android:layout_below="@ id/confirm_button"
                    android:layout_marginTop="5dp" />
            </RelativeLayout>

            <ImageView
                android:id="@ id/receipt_border"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@ id/info_container"
                android:layout_marginTop="-6dp"
                android:contentDescription="@string/icon"
                android:src="@drawable/receipt_border" />

            <TextView
                android:id="@ id/receipt_footer"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@ id/receipt_border"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:textColor="@android:color/white"
                android:textSize="15sp" />

            <ProgressBar
                android:id="@ id/progressBar1"
                style="?android:attr/progressBarStyleLargeInverse"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_centerInParent="true"
                android:gravity="center"
                android:visibility="gone" />
        </RelativeLayout>
    </LinearLayout>

</ScrollView>
  

Пожалуйста, сообщите, что не так с этим макетом, потому что я установил всю ширину в соответствии с родительским, но все еще не работает на всех устройствах.
Очень признателен за любую любезную помощь.

Комментарии:

1. Не связано, но вам действительно следует сократить количество используемых макетов. Например, вы могли бы удалить корневой относительный макет и сделать вид прокрутки корневым макетом.

2. @Spidy, спасибо за твой ответ. Я отредактировал свой xml-макет, как указано выше, но результат все тот же. Пожалуйста, сообщите, есть ли еще какая-либо ошибка, которую я допустил?? Спасибо.

Ответ №1:

Хм, сейчас я не вижу ничего неправильного.

Однажды у меня была проблема с тем, что что-то в моем коде было неправильным, но на устройствах с API 18 android:gravity="center_vertical" простое не работало, но я исправляю это, просто изменяя значение android:target="18" на android:target="16" . Я выбираю «16», потому что это была версия моего Android, которая работала без каких-либо проблем.

Я не знаю, ваш ли это случай, но измените целевое свойство Android на Android Manifest.xml просто попробуйте (y)

Комментарии:

1. спасибо за ваш ответ, но на моей стороне все еще не работает.