android studio渲染与模拟器上的渲染之间的差异

问题描述 投票:0回答:1

我的布局必须看起来像这样。这是android studio渲染。Screen render

但是当我将其加载到仿真器上时,会得到:Views on the emulator

此问题适用于所有类型的仿真器。还在真实的Nexus 5上进行了测试,效果很好。可能是什么问题?

UPDATE

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/content_layout" >

<LinearLayout 
    android:id="@+id/mainLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:baselineAligned="false"
    android:orientation="horizontal"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".MainActivity" >

    <LinearLayout
        android:id="@+id/func_layout"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="2"
        android:background="@drawable/border_right"
        android:orientation="vertical"
        android:paddingRight="@dimen/function_layout_padding" >
    </LinearLayout>

    <RelativeLayout
        android:id="@+id/graph_layout"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:background="#FFF"
        android:alpha="0.0"
        android:layout_weight="5">
    </RelativeLayout>

</LinearLayout>

<com.kripton.grapher.ui.CustomKeyboardView
    android:id="@+id/keyboard"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:visibility="gone" 
/>

</RelativeLayout>

需要第一个相对布局,因为必须在其中放置KeyboardView。

然后我得到布局并在其中放置视图:

    graphLayout = (RelativeLayout) rootView.findViewById(R.id.graph_layout);
    functionLayout = (LinearLayout) rootView.findViewById(R.id.func_layout);

    functionLayout.addView(addFunctionView);
    graphLayout.addView(mainGraphView);

没有人再使用布局了。

addFunctionView构造函数:

    lp.width = LayoutParams.MATCH_PARENT;
    lp.height = LayoutParams.WRAP_CONTENT;
    lp.verticalMargin = 0.0f;
    lp.horizontalMargin = 0.0f;
    lp.gravity = Gravity.TOP;
    this.setLayoutParams(lp);

graphView构造函数:

    lp.height = LayoutParams.MATCH_PARENT;
    lp.width = LayoutParams.MATCH_PARENT;
    this.setLayoutParams(lp);
    this.setBackgroundColor(Color.WHITE);
    getHolder().addCallback(this);
android android-layout android-studio android-emulator android-linearlayout
1个回答
0
投票

您是否在使用Android Studio创建项目时使用activity_vertical_marginactivity_horizo​​ntal_margin的默认值?

如果是这样,我认为从/ main / res / values-w820dp文件夹中删除dimens.xml文件将有所帮助。该文件包含:

<resources>
    <!-- Example customization of dimensions originally defined in res/values/dimens.xml
         (such as screen margins) for screens with more than 820dp of available width. This
         would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively). -->
    <dimen name="activity_horizontal_margin">64dp</dimen>
</resources>

在屏幕宽度大于820dp的设备上添加了额外的水平填充。由于某些原因,Android Studio预览会忽略该设置(我尝试选择Nexus 9设备进行预览)。

© www.soinside.com 2019 - 2024. All rights reserved.