mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 04:25:18 +00:00
78289ded8f
1. Switch from 300 to 500 colors. 2. Colorize incoming conversation bubbles. 3. Colorize recipeint preference activity toolbar. 4. Support inverted colors in avatars. 5. Make status bar icons tint according to secondary color. // FREEBIE
63 lines
2.8 KiB
XML
63 lines
2.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
android:id="@+id/toolbar"
|
|
android:layout_height="130dp"
|
|
android:layout_width="match_parent"
|
|
android:minHeight="?attr/actionBarSize"
|
|
android:background="?attr/colorPrimary"
|
|
android:theme="@style/TextSecure.LightActionBar">
|
|
|
|
<RelativeLayout android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="center_vertical"
|
|
android:gravity="center_vertical">
|
|
|
|
<org.thoughtcrime.securesms.components.AvatarImageView
|
|
android:id="@+id/avatar"
|
|
android:foreground="@drawable/contact_photo_background"
|
|
android:layout_width="50dp"
|
|
android:layout_height="50dp"
|
|
android:cropToPadding="true"
|
|
android:layout_marginLeft="0dp"
|
|
android:layout_alignParentLeft="true"
|
|
app:inverted="true"/>
|
|
|
|
<TextView android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:transitionName="recipient_name"
|
|
style="@style/TextSecure.TitleTextStyle"
|
|
android:layout_toRightOf="@id/avatar"
|
|
android:layout_marginLeft="10dip"
|
|
tools:ignore="UnusedAttribute"/>
|
|
|
|
<TextView android:id="@+id/blocked_indicator"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@id/avatar"
|
|
android:layout_below="@id/name"
|
|
android:layout_alignLeft="@id/name"
|
|
android:text="@string/recipient_preference_activity__blocked"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
android:textColor="?recipient_preference_blocked"
|
|
android:textAllCaps="true" />
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
<FrameLayout android:id="@+id/preference_fragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</LinearLayout> |