diff options
Diffstat (limited to 'app/src/main/res/layout/separator_navigation_drawer.xml')
-rw-r--r-- | app/src/main/res/layout/separator_navigation_drawer.xml | 35 |
1 files changed, 17 insertions, 18 deletions
diff --git a/app/src/main/res/layout/separator_navigation_drawer.xml b/app/src/main/res/layout/separator_navigation_drawer.xml index 99936ab..ad8baff 100644 --- a/app/src/main/res/layout/separator_navigation_drawer.xml +++ b/app/src/main/res/layout/separator_navigation_drawer.xml @@ -17,42 +17,43 @@ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<LinearLayout
-xmlns:android="http://schemas.android.com/apk/res/android"
-android:id="@+id/itemLayout"
-android:layout_width="fill_parent"
-android:layout_height="wrap_content"
-android:layout_alignParentLeft="true"
-android:orientation="vertical"
-android:layout_marginTop="0dp"
-android:background="#252525"
- >
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/itemLayout"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentStart="true"
+ android:orientation="vertical"
+ android:layout_marginTop="0dp">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:minHeight="35dp"
- >
+ android:background="@drawable/separator">
<TextView
android:id="@+id/separator_navigation_drawer_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
- android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#FFFFFF"
- />
+ android:textSize="@dimen/font_size_small"/>
<TextView
android:id="@+id/separator_navigation_drawer_edit"
android:layout_alignParentRight="true"
- android:layout_gravity="right"
+ android:layout_alignParentEnd="true"
+ android:layout_gravity="center_vertical|end"
+ android:gravity="center_vertical|end"
android:layout_marginRight="8dp"
+ android:layout_marginEnd="8dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="4dp"
- android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="#FFFFFF"
- />
+ android:textSize="@dimen/font_size_small"/>
+
</RelativeLayout>
<View
@@ -62,8 +63,6 @@ android:background="#252525" android:layout_marginTop="1dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
- android:background="#DADADC"
-
- ></View>
+ android:background="#DADADC"/>
</LinearLayout>
\ No newline at end of file |