|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/activity_account"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<android.support.design.widget.AppBarLayout
|
|
|
|
android:id="@+id/account_app_bar_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:theme="@style/AppTheme.Account.AppBarLayout">
|
|
|
|
|
|
|
|
<android.support.design.widget.CollapsingToolbarLayout
|
|
|
|
android:id="@+id/collapsing_toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
app:contentScrim="?attr/toolbar_background_color"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
|
|
|
app:titleEnabled="false">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/account_header_background_color">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/account_header"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignBottom="@+id/account_header_info"
|
|
|
|
android:layout_alignTop="@+id/account_header_info"
|
|
|
|
android:background="@drawable/account_header_default"
|
|
|
|
android:contentDescription="@null"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_collapseMode="pin" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/account_header_info"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/account_header_gradient"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="?attr/actionBarSize"
|
|
|
|
app:layout_collapseMode="parallax">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingLeft="16dp"
|
|
|
|
android:paddingRight="16dp">
|
|
|
|
|
|
|
|
<com.pkmmte.view.CircularImageView
|
|
|
|
android:id="@+id/account_avatar"
|
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:layout_toLeftOf="@+id/follow_btn"
|
|
|
|
android:layout_toStartOf="@+id/follow_btn"
|
|
|
|
android:src="@drawable/avatar_default"
|
|
|
|
app:shadow="true" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/follow_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginTop="6dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_follows_you"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_below="@id/follow_btn"
|
|
|
|
android:layout_marginEnd="10dp"
|
|
|
|
android:layout_marginRight="10dp"
|
|
|
|
android:text="@string/follows_you"
|
|
|
|
android:textColor="?android:textColorPrimary" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_display_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/account_avatar"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?android:textColorPrimary"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:textStyle="normal|bold" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_username"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/account_display_name"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textColor="?android:textColorSecondary" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/account_locked"
|
|
|
|
android:layout_width="16sp"
|
|
|
|
android:layout_height="16sp"
|
|
|
|
android:layout_alignBaseline="@+id/account_username"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:layout_toEndOf="@id/account_username"
|
|
|
|
android:layout_toRightOf="@id/account_username"
|
|
|
|
android:contentDescription="@string/description_account_locked"
|
|
|
|
android:tint="?android:textColorSecondary"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:srcCompat="@drawable/reblog_disabled_light" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/account_note"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="16dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:textColor="?android:textColorTertiary" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/actionBarSize"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_gravity="top"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:popupTheme="?attr/account_toolbar_popup_theme" />
|
|
|
|
|
|
|
|
</android.support.design.widget.CollapsingToolbarLayout>
|
|
|
|
|
|
|
|
</android.support.design.widget.AppBarLayout>
|
|
|
|
|
|
|
|
<android.support.v4.view.ViewPager
|
|
|
|
android:id="@+id/pager"
|
|
|
|
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"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:tabBackground="?android:colorBackground"
|
|
|
|
app:tabGravity="fill">
|
|
|
|
|
|
|
|
<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.TabItem
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
</android.support.design.widget.TabLayout>
|
|
|
|
|
|
|
|
</android.support.v4.view.ViewPager>
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/overlay_fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/tab_bottom_shadow"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="2dp"
|
|
|
|
android:background="@drawable/material_drawer_shadow_bottom"
|
|
|
|
android:visibility="visible"
|
|
|
|
app:layout_anchor="@id/tab_layout"
|
|
|
|
app:layout_anchorGravity="bottom" />
|
|
|
|
|
|
|
|
<android.support.design.widget.FloatingActionButton
|
|
|
|
android:id="@+id/floating_btn"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="bottom|end"
|
|
|
|
android:layout_margin="16dp"
|
|
|
|
android:contentDescription="@string/action_mention"
|
|
|
|
app:srcCompat="@drawable/ic_create_24dp" />
|
|
|
|
|
|
|
|
</android.support.design.widget.CoordinatorLayout>
|