表の行が動的に追加されるボーダー付きの表レイアウトを使用したい。次のように shape.xml を作成しました。
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#99FFFFFF"
/>
<corners android:radius="30px"
/>
<padding android:left="40dp"
android:top="0dp"
android:bottom="0dp"
android:right="10dp"
/>
</shape>
しかし、私の問題は、左マージンが設定されていないことです。それを設定する方法は?