布局边距不适用于Android 2.3.3

时间:2013-10-20 11:04:05

标签: android android-linearlayout margins

所以我的问题是当我在带有droid 2.3的设备上启动我的项目时,布局边距不起作用。但是在4.0.3及更高版本上它可行。我不明白我在哪里犯了一个错误,我有两个相同的设备(华为荣誉)与不同的操作系统(GingerBread和ICS),我真的不明白为什么我的布局边距不能在我的gingerBread设备上工作。以下是截图:

ICS

GINGERBREAD

XML

<?xml version="1.0" encoding="utf-8"?>
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipper"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:background="@color/app_background" >

<include
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    layout="@layout/layout_pleasewait" />

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_marginLeft="15dp"
    android:layout_marginRight="15dp"
    android:orientation="vertical" >

    <View
        android:id="@+id/divider1"
        android:layout_width="fill_parent"
        android:layout_height="1dp"
        android:layout_marginTop="@dimen/divider_margin"
        android:background="@color/layout_divider_bold" />

    <ExpandableListView
        android:id="@+id/firmsList"
        android:layout_width="fill_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:cacheColorHint="#00000000"
        android:divider="@color/layout_divider"
        android:dividerHeight="1dp"
        android:groupIndicator="@null" >
    </ExpandableListView>
</LinearLayout>

<include
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    layout="@layout/layout_no_internet" />

<include
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    layout="@layout/layout_no_searchresult" />
</ViewFlipper>

2 个答案:

答案 0 :(得分:2)

你可能想尝试填充,类似的效果。如果它不起作用,您可以考虑放置一个固定长度的额外视图。它可能不是一个好的解决方案,但应该有效。希望它有所帮助。

答案 1 :(得分:2)

例如,如果你想要一个margin_top,你需要放android:layout_gravity="top"。这对我有用。希望它有所帮助。