I need to set the image closer then the element in its left. The only way to do that is by editing the image taking all the margins off? what if i need it even closer?
Does the marginLeft accept a negative value?
This is how the ImageView is at xml file:
<ImageView
android:id="@+id/lineOneImageView"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerVertical="false"
android:layout_marginLeft="-6"
android:layout_toRightOf="@id/productNameTextView"
android:contentDescription="@string/text_placeholder"
android:scaleType="fitXY"
android:src="@drawable/img_i_black_normal" />
This is the error at this line: android:layout_marginLeft="-6"
Error: Integer types not allowed (at 'layout_marginLeft' with value '-6').