0
我正在使用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方向爲水平
這樣做。感謝DeeV。顯然我有很多學習要做 – user182162