0

アプリでカード UI レイアウトを使用しています。AVD (GN 4.2) と物理デバイス (Galaxy mini 2.3) の両方で問題なく表示されますが、余白の表示が異なります。

AVD:

ここに画像の説明を入力

物理デバイス:

ここに画像の説明を入力

ご覧のとおり、mini には左マージンがありません。

誰が私が間違っているのか知っていますか?どうすればこれを解決できますか?


私のレイアウトコード:

list_row.xml:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight">

    <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginLeft="8dp"
    android:layout_marginRight="8dp"
    android:layout_marginTop="0dp"
    android:layout_marginBottom="0dp"
    android:background="@drawable/card_layout">

        <TextView
        android:id="@+id/post_text"    
        android:layout_gravity="left|center_vertical"
        android:layout_width="0dip"
        android:layout_weight="1"
        android:textColor="@android:color/primary_text_light"
        android:layout_height="wrap_content"
        android:layout_marginBottom="5dp" />

    </LinearLayout>

</FrameLayout>

main_activity.xml:

<LinearLayout 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"
    android:background="#e5e5e5"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/posts_list"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginTop="5dp"
        android:divider="@null"
        android:dividerHeight="0dp" >
    </ListView>

</LinearLayout>

card_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">

<item android:bottom="8dp">
    <shape
        android:dither="true"
        android:shape="rectangle">            
        <corners android:radius="2dp" />           
        <solid android:color="#ccc" />
    </shape>
</item>
<item android:bottom="10dp">
    <shape
        android:dither="true"
        android:shape="rectangle" >            
        <corners android:radius="2dp" />            
        <solid android:color="@android:color/white" />

        <padding
            android:bottom="8dp"
            android:left="8dp"
            android:right="8dp"
            android:top="8dp" />
    </shape>
</item>

</layer-list>
4

1 に答える 1