これを解決するには、リストレイヤーを使用して2つの図形を組み合わせます。そのうちの1つは高さ1 dpが下部に配置されています
optionscreen_bottomrectangle.xml:
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<!-- This is the line -->
<item>
<shape>
<solid android:color="#535353" />
</shape>
</item>
<!-- This is the main color -->
<item android:bottom="1dp">
<shape>
<solid android:color="#252525" />
</shape>
</item>
</layer-list>
次に、layout / main.xmlファイルで
<TextView
android:id="@+id/bottom_rectangle"
android:background="@drawable/optionscreen_bottomrectangle"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_below="@id/table_options"
android:layout_above="@id/exit_bar"/>
これにより、table_optionsとexit_barの間のギャップが背景で埋められ、exit_barが1 dp行を印刷する直前に表示されます。これは私にとってトリックでした、それが誰かを助けることを願っています。
回答を編集して、正しい順序でレイヤーを配置します。アレックス!