LinearLayout
ListView の行ビューとして単一のレイヤーを提供するだけでは、そのマージンは無視されるのではないかと思っていました。
ListView の行ビューを使用する場合、マージンは無視されます
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
ただし、LinearLayout
最初のレイヤーが「ダミー」レイヤーとして機能する2つのレイヤーを提供すると、そのマージンは無視されません。
ListView の行ビューに余白があります
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/buyPortfolioLinearLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="5dp"
どうしてこうなったか分かるかな?