1

在此处输入图像描述

你好

我设计了一个布局,我附上了它的屏幕截图。我在线性布局(tabsFragmentll)和网格视图线性布局之间得到了一个不需要的空间,所以为了删除空间,我在线性布局网格视图中添加了一个标记为 android:layout_marginTop=“-10dp”。添加标签后,它删除了线性布局(tabsFragmentll)和网格视图线性布局之间的空间,但是在屏幕底部我得到了一个不需要的空间,它显示在屏幕底部。我正在努力删除不需要的空格,但我无法这样做。请查看它并给我您的建议。以下是我的布局设计代码:

<LinearLayout
    android:id="@+id/slide_show_content"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.7" >

    <FrameLayout
        android:id="@+id/slide_show_fragment_content"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" />
</LinearLayout>

<LinearLayout
    android:id="@+id/tabsFragmentll"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="0.1" >

    <fragment
        android:name="com.beverly.fragments.TabsButtonFragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_marginTop="-10dp"
    android:layout_weight="1.15"
    android:baselineAligned="false" >

    <RelativeLayout
        android:id="@+id/center_pane_rl"
        android:layout_width="200dp"
        android:layout_height="fill_parent" >

        <FrameLayout
            android:id="@+id/center_pane_frame"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ProgressBar
            android:id="@+id/places_list_view_progress_bar"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:visibility="gone" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <FrameLayout
            android:id="@+id/tab_fragment_content"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </RelativeLayout>
</LinearLayout>

<TableRow
    android:id="@+id/tableRowBtns"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="0.1"
    android:background="@drawable/toolbar_background" >

    <FrameLayout
        android:id="@+id/checkinframe"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:clickable="true" >

        <ImageButton
            android:id="@+id/checkInIB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="5dp"
            android:background="@android:color/transparent"
            android:src="@drawable/checkin" />

        <TextView
            android:id="@+id/checkInTv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="12dp"
            android:text="@string/checkin"
            android:textSize="14sp" />
    </FrameLayout>

    <FrameLayout
        android:id="@+id/cameraframe"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:clickable="true" >

        <ImageButton
            android:id="@+id/cameraIB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="5dp"
            android:background="@android:color/transparent"
            android:src="@drawable/camera" />

        <TextView
            android:id="@+id/cameraTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="12dp"
            android:text="@string/camera"
            android:textSize="14sp" />
    </FrameLayout>

    <FrameLayout
        android:id="@+id/photosframe"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:clickable="true" >

        <ImageButton
            android:id="@+id/photosIB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="5dp"
            android:background="@android:color/transparent"
            android:src="@drawable/photos" />

        <TextView
            android:id="@+id/photosTv"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="12dp"
            android:text="@string/photos"
            android:textSize="14sp" />
    </FrameLayout>

    <FrameLayout
        android:id="@+id/termsframe"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:clickable="true" >

        <ImageButton
            android:id="@+id/termsIB"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginBottom="5dp"
            android:background="@android:color/transparent"
            android:src="@drawable/terms" />

        <TextView
            android:id="@+id/termsTV"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:layout_marginTop="12dp"
            android:text="@string/terms"
            android:textSize="14sp" />
    </FrameLayout>
</TableRow>

4

0 回答 0