57 lines
1.9 KiB
XML
57 lines
1.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<com.android.volley.toolbox.NetworkImageView
|
||
|
android:layout_width="64dp"
|
||
|
android:layout_height="64dp"
|
||
|
android:scaleType="fitCenter"
|
||
|
android:id="@+id/blocked_user_avatar"
|
||
|
android:padding="@dimen/status_avatar_padding"
|
||
|
android:layout_alignParentLeft="true" />
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="64dp"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_toRightOf="@id/blocked_user_avatar">
|
||
|
|
||
|
<Space
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/blocked_user_display_name"
|
||
|
android:text="Display Name" />
|
||
|
|
||
|
<Space
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/blocked_user_username"
|
||
|
android:text="\@username\@example.com" />
|
||
|
|
||
|
<Space
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_weight="1" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<Button
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/blocked_user_unblock"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_centerVertical="true"
|
||
|
android:text="@string/action_unblock" />
|
||
|
|
||
|
</RelativeLayout>
|