mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-30 02:30:38 +00:00
18 lines
521 B
XML
18 lines
521 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<merge xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="1">
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:id="@+id/bar"
|
||
|
|
android:layout_width="0dip"
|
||
|
|
android:layout_height="match_parent" />
|
||
|
|
|
||
|
|
<View
|
||
|
|
android:id="@+id/empty_bar_space"
|
||
|
|
android:layout_width="0dip"
|
||
|
|
android:layout_height="match_parent" />
|
||
|
|
</merge>
|