我正在使用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方向更改为水平时设计器的前后截图
答案 0 :(得分:0)
ImageView
中的LinearLayout
宽度为match_parent
。这意味着它将填满整个屏幕。你的元素不会消失,它们会被推离屏幕。他们在ImageView
旁边选址。缩短宽度,你可以看到它们。