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方向爲水平

回答

0

您的ImageViewLinearLayout的寬度爲match_parent。這意味着它將填滿整個屏幕。你的元素不會消失,它們被推離屏幕。他們正坐在ImageView旁邊。縮短寬度,你可以看到它們。

+0

這樣做。感謝DeeV。顯然我有很多學習要做 – user182162

相關問題