android studio渲染和模拟器上渲染之间的区别

时间:2015-01-18 21:01:20

标签: android android-layout android-studio android-emulator android-linearlayout

我的布局必须如下所示。这是android studio render。Screen render http://s019.radikal.ru/i615/1501/69/800f0855ddcb.png

但是当我在模拟器上加载它时,我得到了:Views on the emulator http://s020.radikal.ru/i715/1501/20/8b87e6269572.png

此问题适用于所有类型的模拟器。还在真正的Nexus 5上进行了测试,它运行良好。可能是什么问题?

更新

<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);

布局中没有更多的manupulation。

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);

1 个答案:

答案 0 :(得分:0)

您是否使用在使用Android Studio创建项目时生成的 activity_vertical_margin activity_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设备进行预览)。