두 개의 모양을 결합한 목록 레이어를 사용하여이 문제를 해결했습니다. 그 중 하나는 높이가 1dp 하단에 배치되었습니다.
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가 1dp 줄을 인쇄하기 직전에 있습니다. 이것은 나를 위해 속임수를 썼습니다. 다른 사람에게 도움이되기를 바랍니다.
올바른 순서로 레이어를 배치하기 위해 편집 된 답변. 알렉스!