relativelayout内的线性布局并不能完美贴合全屏

时间:2017-07-17 07:00:26

标签: android android-layout android-linearlayout android-fullscreen

Linerlayout将不适合全屏白色背景颜色显示.. 任何关于使双方都适合全屏的想法?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"\>
 <Button
android:id="@+id/bClose"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_margin="0dp"
android:background="@drawable/round_button_background"
android:gravity="center_vertical|center_horizontal"
android:onClick="cancelActivity"
android:text="@string/x_close" 
android:textColor="#FFF"
android:textSize="15sp"
android:textStyle="bold"
android:layout_alignParentTop="true" 
/>


<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:fillViewport="true"
android:gravity="center_vertical|center_horizontal"
android:id="@+id/preview_frag"
android:focusable="true">
<requestFocus />
</LinearLayout> 
</RelativeLayout>

enter image description here

8 个答案:

答案 0 :(得分:1)

你能用webview试试吗?通过在其中实现填充和边距来调整webview ....使用 - (负)值

答案 1 :(得分:0)

这完全没问题。尝试使用match_parent而不是fill_parent。 检查图像是否有空白区域。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:id="@+id/bClose"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignParentRight="true"
        android:layout_alignParentTop="true"
        android:layout_margin="0dp"
        android:background="@drawable/ic_event_white_24dp"
        android:gravity="center_vertical|center_horizontal"
        android:text="close"
        android:textColor="#FFF"
        android:textSize="15sp"
        android:textStyle="bold" />


    <LinearLayout
        android:id="@+id/preview_frag"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true"
        android:focusable="true"
        android:background="@color/theme_primary"
        android:gravity="center_vertical|center_horizontal"
        android:orientation="horizontal">

        <requestFocus />
    </LinearLayout>
</RelativeLayout

答案 2 :(得分:0)

布局正确,可能问题出在片段布局中,因为LinearLayout似乎是片段容器。 检查您的fragment_layout是否有一些边距或填充。 另外,建议您从fill_parent更改为match_parent

答案 3 :(得分:0)

试试这个

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <Button
        android:id="@+id/bClose"
        android:layout_width="40dp"
        android:layout_height="40dp"
        android:layout_alignParentRight="true"
        android:layout_margin="0dp"
        android:background="@drawable/round_button_background"
        android:gravity="center_vertical|center_horizontal"
        android:onClick="cancelActivity"
        android:text="@string/x_close" 
        android:textColor="#FFF"
        android:textSize="15sp"
        android:textStyle="bold"
        android:layout_alignParentTop="true"
        />


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="horizontal"
        android:fillViewport="true"
        android:gravity="center_vertical|center_horizontal"
        android:id="@+id/preview_frag"
        android:focusable="true">
        <requestFocus />
    </LinearLayout>
</RelativeLayout>

答案 4 :(得分:0)

如果您希望关闭按钮位于LinearLayout之上,可以尝试将父视图用作FrameLayout,如下所示: -

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="25px"
    android:minHeight="25px"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/frameLayout1">
    <LinearLayout
        android:orientation="vertical"
        android:minWidth="25px"
        android:minHeight="25px"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/linearLayout1"
        android:background="@android:color/holo_blue_bright" />
    <Button
        android:text="Button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/button1"
        android:layout_gravity="right" />
</FrameLayout>

输出将如下所示: - enter image description here

答案 5 :(得分:0)

将高度和宽度属性fill_parent替换为match_parent从LinearLayout中移除重力尝试上面的代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
 <Button
android:id="@+id/bClose"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_alignParentRight="true"
android:layout_margin="0dp"
android:background="@drawable/round_button_background"
android:gravity="center_vertical|center_horizontal"
android:onClick="cancelActivity"
android:text="@string/x_close" 
android:textColor="#FFF"
android:textSize="15sp"
android:textStyle="bold"
android:layout_alignParentTop="true" 
/>


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/preview_frag">
</LinearLayout> 
</RelativeLayout>

答案 6 :(得分:0)

试试这个

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">

<Button
    android:id="@+id/bClose"
    android:layout_width="40dp"
    android:layout_height="40dp"
    android:layout_alignParentRight="true"
    android:layout_alignParentTop="true"
    android:layout_margin="0dp"
    android:background="@drawable/blockclose"
    android:gravity="center_vertical|center_horizontal"
    android:onClick="cancelActivity"
    android:text="x_close"
    android:textColor="#FFF"
    android:textSize="15sp"
    android:textStyle="bold" />


<LinearLayout
    android:id="@+id/preview_frag"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    android:background="@drawable/bg"
    android:focusable="true"
    android:gravity="center_vertical|center_horizontal"
    android:orientation="horizontal">


    <requestFocus />
</LinearLayout>
</RelativeLayout>

如果您正在使用imageview尝试使用

  

android:scaleType="fitXY"

答案 7 :(得分:-1)

我也面临同样的问题,通过给出负边际值,它对我来说很好 示例代码

<body style='margin:-0.5px;'>

我希望上面的代码适合你