更改一个元素的属性会导致其他元素停止显示

时间:2016-11-15 19:12:16

标签: android xml android-layout visual-studio-2015 xamarin-studio

我正在使用developer.xamarin.com的DeveloperWalkthrough示例。添加imageview后,一切正常,第二个布局添加两个文本小部件。当我更改根线性布局的方向值时,带有两个文本小部件的第二个线性布局从设计器中消失

这是源代码

    <xml version="1.0" encoding="utf-8"?>
    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
        <ImageView
            android:src="@android:drawable/ic_menu_gallery"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/imageView1" />
        <LinearLayout
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/linearLayout1">
            <TextView
                android:text="Large Text"
                android:textAppearance="?android:attr/textAppearanceLarge"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/textView1" />
            <TextView
                android:text="Small Text"
                android:textAppearance="?android:attr/textAppearanceSmall"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:id="@+id/textView2" />
            </LinearLayout>
        </LinearLayout>

附件是当我将根LinearLayout方向更改为水平时设计器的前后截图

1 个答案:

答案 0 :(得分:0)

ImageView中的LinearLayout宽度为match_parent。这意味着它将填满整个屏幕。你的元素不会消失,它们会被推离屏幕。他们在ImageView旁边选址。缩短宽度,你可以看到它们。