5

我正在开发一个 Android 应用程序,我想在 Eclipse 中设计一个大于屏幕高度的布局。

我有一个片段的布局,这个片段将在一个ScrollViewon内FragmentActivity

这是我的片段的布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/user_pro_main_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/text_state"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="@string/layout_state"
        android:textAppearance="?android:attr/textAppearanceLarge" />

</LinearLayout>

我是否必须更改android:layout_height="match_parent"以使其在 eclipse 的设计师上更大?

如果我想在 Eclipse Designer 上看到更大的布局,我该怎么做?

4

4 回答 4

2

答案很简单:您无法在 Eclipse 编辑器上查看比屏幕更大的布局。

可能的解决方法:
1. 评论部分顶视图(可见)以查看底部(不可见),然后在准备启动时取消注释。
2. 将设备预览更改为更大的分辨率(Nexus 10),这将为您提供一些额外的空间。

于 2013-06-07T13:54:46.437 回答
1

您始终可以在 layout_height 中明确设置确切的 dp 值,但当然大多数时候我认为您不需要固定值,因此以编程方式进行。

LinearLayout yourLayout; // Get it by findViewById()
yourLayout.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, your_calculated_height));
于 2013-06-06T13:23:52.140 回答
0

您将设置android:layout_height="wrap_content"并且当您在物理屏幕之外添加子元素时,它将继续拉伸布局。

至于在 Eclipse 上查看这个,我不确定。我个人只会在设备上运行它来查看它。

于 2013-06-06T13:25:13.560 回答
0

只需计算设备高度和宽度,并在运行时在布局高度和宽度处将 int 值添加到计算的高度和宽度。

public void deviceDisplay(){

  Display display = getWindowManager().getDefaultDisplay();
  int width = display.getWidth();
  int height = display.getHeight();


 }
于 2013-06-07T13:45:23.213 回答