2017-01-28 14:33:43 +11:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2017-05-05 02:07:59 +10:00
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-28 14:33:43 +11:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2017-08-05 19:34:50 +10:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:id="@+id/activity_account"
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:orientation="vertical">
|
2017-01-28 14:33:43 +11:00
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
2017-05-05 02:07:59 +10:00
|
|
|
android:id="@+id/account_app_bar_layout"
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-03-07 18:28:12 +11:00
|
|
|
android:layout_height="wrap_content"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:theme="@style/AppTheme.Account.AppBarLayout">
|
2017-01-28 14:33:43 +11:00
|
|
|
|
|
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
2017-03-07 06:48:31 +11:00
|
|
|
android:id="@+id/collapsing_toolbar"
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2017-03-07 06:48:31 +11:00
|
|
|
android:fitsSystemWindows="true"
|
2017-05-05 02:07:59 +10:00
|
|
|
app:contentScrim="?attr/toolbar_background_color"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
2017-01-28 14:33:43 +11:00
|
|
|
app:titleEnabled="false">
|
|
|
|
|
2017-03-16 07:38:19 +11:00
|
|
|
<RelativeLayout
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-02-13 16:18:17 +11:00
|
|
|
android:background="?attr/account_header_background_color">
|
2017-01-28 14:33:43 +11:00
|
|
|
|
2017-03-07 06:48:31 +11:00
|
|
|
<ImageView
|
2017-05-05 02:07:59 +10:00
|
|
|
android:id="@+id/account_header"
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-03-07 06:48:31 +11:00
|
|
|
android:layout_height="match_parent"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:layout_alignBottom="@+id/account_header_info"
|
2017-03-16 09:51:01 +11:00
|
|
|
android:layout_alignTop="@+id/account_header_info"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:background="@drawable/account_header_default"
|
|
|
|
android:contentDescription="@null"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_collapseMode="pin" />
|
2017-01-28 14:33:43 +11:00
|
|
|
|
2017-11-06 08:32:36 +11:00
|
|
|
<android.support.constraint.ConstraintLayout
|
2017-03-16 09:51:01 +11:00
|
|
|
android:id="@+id/account_header_info"
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/account_header_gradient"
|
2017-08-05 19:34:50 +10:00
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:paddingTop="?attr/actionBarSize"
|
|
|
|
app:layout_collapseMode="parallax">
|
2017-01-28 14:33:43 +11:00
|
|
|
|
2017-08-05 19:34:50 +10:00
|
|
|
<com.pkmmte.view.CircularImageView
|
|
|
|
android:id="@+id/account_avatar"
|
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:src="@drawable/avatar_default"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2017-08-05 19:34:50 +10:00
|
|
|
app:shadow="true" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/follow_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-11-06 08:32:36 +11:00
|
|
|
android:layout_marginTop="6dp"
|
2018-02-03 23:34:40 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
2017-08-05 19:34:50 +10:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_follows_you"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:text="@string/follows_you"
|
2017-11-06 08:32:36 +11:00
|
|
|
android:textColor="?android:textColorPrimary"
|
2017-12-10 07:34:04 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintEnd_toEndOf="@id/follow_btn"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/follow_btn" />
|
2017-08-05 19:34:50 +10:00
|
|
|
|
2018-05-10 19:16:56 +10:00
|
|
|
<android.support.text.emoji.widget.EmojiTextView
|
2017-08-05 19:34:50 +10:00
|
|
|
android:id="@+id/account_display_name"
|
2017-03-07 06:48:31 +11:00
|
|
|
android:layout_width="match_parent"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:layout_height="wrap_content"
|
2017-08-05 19:34:50 +10:00
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_large"
|
2017-08-05 19:34:50 +10:00
|
|
|
android:textStyle="normal|bold"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/account_avatar"
|
2017-08-05 19:34:50 +10:00
|
|
|
tools:text="Tusky Mastodon Client" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_username"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?android:textColorSecondary"
|
2017-12-10 07:34:04 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/account_display_name"
|
2017-08-05 19:34:50 +10:00
|
|
|
tools:text="\@Tusky" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/account_locked"
|
|
|
|
android:layout_width="16sp"
|
|
|
|
android:layout_height="16sp"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:contentDescription="@string/description_account_locked"
|
|
|
|
android:tint="?android:textColorSecondary"
|
|
|
|
android:visibility="gone"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/account_username"
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/account_username"
|
2018-05-29 05:29:06 +10:00
|
|
|
app:srcCompat="@drawable/reblog_private_light"
|
2017-11-06 08:32:36 +11:00
|
|
|
tools:visibility="visible" />
|
2017-01-28 14:33:43 +11:00
|
|
|
|
2018-05-10 19:16:56 +10:00
|
|
|
<android.support.text.emoji.widget.EmojiTextView
|
2017-05-05 02:07:59 +10:00
|
|
|
android:id="@+id/account_note"
|
2017-03-07 06:48:31 +11:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-08-05 19:34:50 +10:00
|
|
|
android:layout_below="@id/account_username"
|
|
|
|
android:paddingBottom="16dp"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:paddingTop="10dp"
|
2017-08-05 19:34:50 +10:00
|
|
|
android:textColor="?android:textColorTertiary"
|
2017-12-10 07:34:04 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintTop_toBottomOf="@id/account_username"
|
2017-08-05 19:34:50 +10:00
|
|
|
tools:text="This is a test description" />
|
2017-03-07 18:28:12 +11:00
|
|
|
|
2017-11-06 08:32:36 +11:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/followers_tv"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="8dp"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:textColor="@color/account_tab_font_color"
|
2017-12-10 07:34:04 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
2017-12-01 06:12:09 +11:00
|
|
|
app:layout_constraintHorizontal_bias="0"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/account_note"
|
2017-12-01 06:12:09 +11:00
|
|
|
tools:text="3000 Followers" />
|
2017-11-06 08:32:36 +11:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/following_tv"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:textColor="@color/account_tab_font_color"
|
2017-12-10 07:34:04 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintBottom_toBottomOf="@id/followers_tv"
|
|
|
|
app:layout_constraintEnd_toStartOf="@id/statuses_btn"
|
|
|
|
app:layout_constraintHorizontal_bias="0"
|
|
|
|
app:layout_constraintStart_toEndOf="@id/followers_tv"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/followers_tv"
|
2017-12-01 06:12:09 +11:00
|
|
|
tools:text="500 Following" />
|
2017-11-06 08:32:36 +11:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/statuses_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2017-12-01 06:12:09 +11:00
|
|
|
android:textColor="@color/account_tab_font_color"
|
2017-12-02 07:52:10 +11:00
|
|
|
android:textSize="?attr/status_text_medium"
|
2017-12-10 07:34:04 +11:00
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2017-11-06 08:32:36 +11:00
|
|
|
app:layout_constraintHorizontal_bias="0"
|
2017-12-01 06:12:09 +11:00
|
|
|
app:layout_constraintStart_toEndOf="@id/following_tv"
|
|
|
|
app:layout_constraintTop_toTopOf="@id/followers_tv"
|
|
|
|
tools:text="3000 Posts" />
|
2017-11-06 08:32:36 +11:00
|
|
|
|
|
|
|
</android.support.constraint.ConstraintLayout>
|
2017-03-07 18:28:12 +11:00
|
|
|
|
2017-03-16 07:38:19 +11:00
|
|
|
</RelativeLayout>
|
2017-01-28 14:33:43 +11:00
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
2017-03-07 06:48:31 +11:00
|
|
|
android:layout_alignParentTop="true"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:layout_gravity="top"
|
|
|
|
android:background="@android:color/transparent"
|
2017-03-07 18:28:12 +11:00
|
|
|
app:layout_collapseMode="pin"
|
2018-05-11 04:13:25 +10:00
|
|
|
app:popupTheme="?attr/toolbar_popup_theme" />
|
2017-01-28 14:33:43 +11:00
|
|
|
|
|
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
2017-05-05 02:07:59 +10:00
|
|
|
android:id="@+id/pager"
|
2017-01-28 14:33:43 +11:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
<android.support.design.widget.TabLayout
|
|
|
|
android:id="@+id/tab_layout"
|
|
|
|
android:layout_width="match_parent"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:layout_height="wrap_content"
|
2017-11-06 08:32:36 +11:00
|
|
|
android:background="?android:colorBackground"
|
2017-12-01 06:12:09 +11:00
|
|
|
app:tabGravity="fill"
|
2017-12-10 07:34:04 +11:00
|
|
|
app:tabIndicatorHeight="3dp"
|
2017-12-01 06:12:09 +11:00
|
|
|
app:tabMaxWidth="0dp"
|
2017-12-10 07:34:04 +11:00
|
|
|
app:tabSelectedTextColor="?attr/colorAccent"
|
|
|
|
app:tabTextAppearance="@style/TuskyTabAppearance">
|
2017-01-28 14:33:43 +11:00
|
|
|
|
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<android.support.design.widget.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</android.support.design.widget.TabLayout>
|
|
|
|
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
|
2017-04-09 18:13:18 +10:00
|
|
|
<View
|
|
|
|
android:id="@+id/tab_bottom_shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:background="@drawable/material_drawer_shadow_bottom"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:visibility="visible"
|
|
|
|
app:layout_anchor="@id/tab_layout"
|
|
|
|
app:layout_anchorGravity="bottom" />
|
2017-04-09 18:13:18 +10:00
|
|
|
|
2017-03-07 06:48:31 +11:00
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/floating_btn"
|
|
|
|
android:layout_width="wrap_content"
|
2017-05-05 02:07:59 +10:00
|
|
|
android:layout_height="wrap_content"
|
2017-03-07 06:48:31 +11:00
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="16dp"
|
2017-08-04 18:53:38 +10:00
|
|
|
android:contentDescription="@string/action_mention"
|
|
|
|
app:srcCompat="@drawable/ic_create_24dp" />
|
2017-03-07 06:48:31 +11:00
|
|
|
|
2018-05-07 06:05:54 +10:00
|
|
|
<include layout="@layout/item_status_bottom_sheet"/>
|
|
|
|
|
2017-04-09 18:13:18 +10:00
|
|
|
</android.support.design.widget.CoordinatorLayout>
|