了解布局尺寸标注

时间:2013-10-07 00:20:43

标签: android android-layout

我在lonnng休息后回到android,我觉得我已经失去了我的modjo。

我正在尝试使用相对布局构建日常计划,稍后我将使用事件填充这些布局。

以下是我的活动的内容视图:

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

<ScrollView
    android:layout_width="600dp"
    android:layout_height="fill_parent" >

    <RelativeLayout
        android:id="@+id/day_main_relative"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="horizontal" >

            <RelativeLayout
                android:id="@+id/day_title_relative"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="3"
                android:background="@color/blue" >

                <View //SEPARATOR
                    android:layout_width="2dp"
                    android:layout_height="0dp"
                    android:layout_alignParentBottom="true"
                    android:layout_alignParentRight="true"
                    android:layout_alignParentTop="true"
                    android:background="@color/black" />
            </RelativeLayout>

            <RelativeLayout
                android:id="@+id/day_content_relative"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="10"
                android:background="@color/light_orange" />
        </LinearLayout>
    </RelativeLayout>
</ScrollView>

Planning在ScrollView中。我的想法是用我想要定义相对布局高度的线填充''day_main_relative''。我必须保持这种动力,所以我做了类似的事情:

for (int i = 0; i < Constants.HOUR_RANGE; i++) {

        // Cadrillage
        ViewGroup separator = (ViewGroup) inflater.inflate(
                R.layout.week_separator_layout, planningMainLayout, false);
        ViewGroup.MarginLayoutParams separatorParams = (ViewGroup.MarginLayoutParams) separator
                .getLayoutParams();
        separatorParams.setMargins(0,
                DpHourLabel.convertValueToDpDay(i * 60), 0, 0);
        separator.setLayoutParams(separatorParams);
        planningMainLayout.addView(separator);

然后我希望我的Linearlayout最大限度地扩展。

为了做空,我喜欢这样的东西(我的contentView的SEPARATOR“View”元素中有一条黑线):

enter image description here

但我得到了这个:

enter image description here

0 个答案:

没有答案