2016-09-16 45 views
0

我想在圖像視圖中設置20KB的圖像。但是我沒有在屏幕上看到圖像。我在Resources/@ drawable中插入了圖像。但不在佈局屏幕上顯示圖像(.axml)。我.axml代碼如下:無法在imageview中設置圖像在xamarin.android

<?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="wrap_content" 
    android:minWidth="25px" 
    android:minHeight="25px"> 
    <LinearLayout 
     android:orientation="horizontal" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1"> 
     <TextView 
      android:text="Last Check-in" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/textView1" 
      android:paddingLeft="20dp" 
      android:paddingRight="30dp" 
      android:paddingTop="10dp" 
      android:paddingBottom="5dp" /> 
     <TextView 
      android:text="Date" 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:id="@+id/textView2" 
      android:paddingLeft="50dp" 
      android:paddingRight="50dp" 
      android:paddingTop="10dp" 
      android:paddingBottom="5dp" /> 
    </LinearLayout> 
    <LinearLayout 
     android:orientation="horizontal" 
     android:layout_width="wrap_content" 
     android:layout_height="match_parent" 
     android:layout_weight="1"> 
     <ImageView 
      android:src="@android:drawable/ic_menu_gallery" 
      android:layout_width="wrap_content" 
      android:layout_height="match_parent" 
      android:id="@+id/imageView2" /> 
     <TextView 
      android:text="Productivity" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/textView1" 
      android:paddingLeft="20dp" 
      android:paddingRight="30dp" 
      android:paddingTop="10dp" 
      android:paddingBottom="5dp" /> 
     <ImageView 
      android:src="@drawable/1happy" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:id="@+id/fithappy" /> 
    </LinearLayout> 
    <ImageView 
     android:src="@android:drawable/ic_menu_gallery" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:id="@+id/imageView1" /> 
</LinearLayout> 

@ drawablw/1happy是圖像包含

+0

你叫的文件夾'@ drawable'? – Cheesebaron

回答

0

當你創建項目你應該有一個在你的「資源」文件夾,名爲「繪製」的文件夾在默認情況下。將圖像移動到該文件夾​​。然後刪除「@drawable」文件夾,因爲Xamarin項目不會使用該文件夾名稱中的圖像進行編譯。

有關工作示例,請參閱https://developer.xamarin.com/recipes/android/controls/imageview/display_an_image/

+0

我的圖像裏面的資源 - 可拖拽的文件夾本身。該圖像是非常小的20KB,我想它在我的屏幕左側 – botguide