2014-02-27 45 views
0

我的列表視圖中的單行包含圖像和文本。我想在這個文字和放在彼此旁邊的圖像之間增加空格。我怎樣才能做到這一點?單行的列表視圖項之間的間距

<TextView 
    android:id="@+id/text1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_marginTop="10dp" 
    android:drawableLeft="@drawable/ic_launcher" 
    android:padding="5dp" 
    android:text="" /> 

我正在使用這個。

+1

嘗試什麼?發帖 –

+1

您需要告訴我們您使用什麼樣的適配器來填充列表視圖。 – KetanJogani

+4

也發佈該行的佈局。 – Fllo

回答

1

您需要將佈局邊距屬性設置爲視圖。

請參見:MarginLayoutParams

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"> 

    <ImageView 
     android:id="@+id/dat_img" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" /> 

    <TextView 
     android:id="@+id/dat_good_words" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="5dp" 
     android:text="Dat GooooD Words" /> 

</LinearLayout>