diff options
author | iNPUTmice <daniel@gultsch.de> | 2014-07-08 11:41:19 +0200 |
---|---|---|
committer | iNPUTmice <daniel@gultsch.de> | 2014-07-08 11:41:19 +0200 |
commit | 3ac70d4b868df47d14aedc104d1691b8597c5e1f (patch) | |
tree | f6333cd8fc90b36c25de01a5909349b1ef1db25e /res/layout/activity_muc_details.xml | |
parent | 37a8b87235f8c85a851976f5995c8c8c00c83fa5 (diff) |
uniformed colors. made colors a little material
Diffstat (limited to '')
-rw-r--r-- | res/layout/activity_muc_details.xml | 27 |
1 files changed, 15 insertions, 12 deletions
diff --git a/res/layout/activity_muc_details.xml b/res/layout/activity_muc_details.xml index ebd3db0f..15f09c7c 100644 --- a/res/layout/activity_muc_details.xml +++ b/res/layout/activity_muc_details.xml @@ -2,7 +2,7 @@ <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="#e5e5e5"> + android:background="@color/secondarybackground"> <LinearLayout android:layout_width="wrap_content" @@ -13,11 +13,12 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="8dp" - android:text="@string/muc_details_conference" /> + android:text="@string/muc_details_conference" + android:textColor="@color/primarytext"/> <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="#eee" > + android:background="@color/primarybackground" > <EditText @@ -26,7 +27,7 @@ android:layout_height="48dp" android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/muc_edit_subject" - android:background="#eee" + android:background="@color/primarybackground" android:ems="10" android:hint="@string/muc_details_conference_subject" android:inputType="textAutoComplete" @@ -52,8 +53,8 @@ android:layout_height="wrap_content" android:padding="8dp" android:singleLine="true" - android:textColor="#5b5b5b" - android:textSize="14sp"/> + android:textSize="14sp" + android:textColor="@color/primarytext"/> <TextView style="@style/sectionHeader" @@ -62,12 +63,13 @@ android:paddingLeft="8dp" android:paddingRight="8dp" android:paddingTop="8dp" - android:text="@string/muc_details_your_nickname" /> + android:text="@string/muc_details_your_nickname" + android:textColor="@color/primarytext"/> <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content" - android:background="#eee" > + android:background="@color/primarybackground" > <EditText @@ -76,7 +78,7 @@ android:layout_height="48dp" android:layout_alignParentLeft="true" android:layout_toLeftOf="@+id/muc_edit_nick" - android:background="#eee" + android:background="@color/primarybackground" android:ems="10" android:hint="@string/muc_details_your_nickname" android:inputType="textEmailAddress" @@ -103,7 +105,7 @@ android:padding="8dp" android:singleLine="true" android:textSize="14sp" - android:textColor="#5b5b5b"/> + android:textColor="@color/primarytext"/> <LinearLayout android:id="@+id/muc_more_details" @@ -119,12 +121,13 @@ android:paddingLeft="8dp" android:paddingRight="8dp" android:paddingTop="8dp" - android:text="@string/muc_details_other_members" /> + android:text="@string/muc_details_other_members" + android:textColor="@color/primarytext"/> <LinearLayout android:id="@+id/muc_members" android:layout_width="fill_parent" - android:layout_height="fill_parent" + android:layout_height="0dp" android:layout_weight="1" android:orientation="vertical" android:divider="?android:dividerHorizontal" |