2015-11-27 65 views
-2

這裏的圖像是顯示在設計view.i添加的圖片中可繪製folder.but它不工作我的圖片XML文件。不顯示在設計視圖

<?xml version="1.0" encoding="utf-8"?> 

<LinearLayout 
    android:orientation="horizontal" 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:weightSum="2"> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:id="@+id/imageView" 
     android:src="@drawable/german" 
     android:layout_weight="1"/> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:id="@+id/imageView2" 
     android:src="@drawable/german" 
     android:layout_weight="1"/> 
</LinearLayout> 

+0

你可以發佈完整的佈局。 – starkshang

回答

1

嘗試這個

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

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:id="@+id/imageView" 
     android:src="@drawable/german" 
     android:layout_weight="1"/> 

    <ImageView 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:id="@+id/imageView2" 
     android:src="@drawable/german" 
     android:layout_weight="1"/> 
</LinearLayout> 
+0

仍然沒有在您的xml文件中顯示 – user5403480

+0

是否有任何其他代碼或只有這麼多 –

+0

@ user5403480 plz顯示您的完整佈局 –

0

更改您的LinearLayoutandroid:layout_heightWRAP_CONTENT .View與0dp高度將不會顯示。

+0

不適用於此 – user5403480

0

這裏是解決方案,

<?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:layout_weight="1" 
android:orientation="horizontal" 
android:weightSum="2" > 
<ImageView 
    android:id="@+id/imageView" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_weight="1" 
    android:src="@drawable/ic_launcher" /> 

<ImageView 
    android:id="@+id/imageView2" 
    android:layout_width="wrap_content" 
    android:layout_height="match_parent" 
    android:layout_weight="1" 
    android:src="@drawable/ic_launcher" /> 
</LinearLayout> 

樂意幫助和快樂編碼...

-1

你要做這樣的方式:

<?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:layout_weight="1" 
android:orientation="horizontal" 
android:weightSum="2" > 
<ImageView 
    android:id="@+id/imageView" 
    android:layout_width="wrap_content" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:src="@drawable/ic_launcher" /> 

<ImageView 
    android:id="@+id/imageView2" 
    android:layout_width="wrap_content" 
    android:layout_height="0dp" 
    android:layout_weight="1" 
    android:src="@drawable/ic_launcher" /> 
</LinearLayout> 

當然,它會工作。

+0

是的!這是正確的答案。 –

相關問題