我有以下佈局一個ListView:線性佈局中刪除元件之間的間隔
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageView
android:id="@+id/icon"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:layout_marginTop="1dp"
android:layout_marginBottom="1dp"
android:src="@drawable/ok" >
</ImageView>
<TextView
android:id="@+id/label"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:text="@+id/label"
android:textSize="20dp" >
</TextView>
</LinearLayout>
這將產生以下佈局:
但我想擺脫空的空間放在圖像的左側,並將文字放在圖像旁邊:
我已經嘗試設置填充和邊距爲0dp,但沒有奏效。
編輯:我張貼的LinearLayout是ConstraintLayout的一部分:
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.beric.listviewtest.MyListActivity"
tools:showIn="@layout/activity_my_list">
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/feed_fragment_portrait"
class="com.beric.listviewtest.MyListFragment"/>
</android.support.constraint.ConstraintLayout>
發佈你的'ListView'佈局。 –
添加完整的佈局 –
可能是您的可繪製圖像有填充檢查它,使用方向水平線性佈局 – dharmx