give media library preference some padding

This commit is contained in:
Adrian Ulrich 2021-03-28 18:37:49 +02:00
parent 5eb97409ec
commit 39e8404e41

View File

@ -24,6 +24,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:paddingLeft="14dp"
android:paddingRight="14dp"
android:orientation="vertical" >
<TextView
@ -120,17 +122,9 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
</TableRow>
</TableLayout>
<Button
android:id="@+id/cancel_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:text="@string/cancel">
</Button>
<ProgressBar
android:id="@+id/media_stats_progress_bar"
android:paddingTop="24dp"
android:paddingTop="14dp"
android:layout_width="match_parent"
android:layout_height="match_parent"
style="?android:attr/progressBarStyleHorizontal" />
@ -141,6 +135,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
android:layout_height="wrap_content"
android:minLines="3"
android:text="@string/empty" />
<Button
android:id="@+id/cancel_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:text="@string/cancel">
</Button>
</LinearLayout>