b5c4339894
Switch status icons to Material ones Fix layouts on statuses
272 lines
No EOL
10 KiB
XML
272 lines
No EOL
10 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:id="@+id/status_container">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/status_reblogged_bar"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_marginTop="@dimen/status_reblogged_bar_top_padding">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
app:srcCompat="@drawable/ic_repeat_24dp"
|
|
android:id="@+id/status_reblogged_icon"
|
|
android:paddingRight="10dp"
|
|
android:paddingLeft="24dp"
|
|
android:tint="?android:textColorTertiary" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/status_reblogged"
|
|
android:textColor="?android:textColorTertiary"
|
|
android:layout_centerVertical="true"
|
|
android:layout_toRightOf="@id/status_reblogged_icon" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<ImageView
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:scaleType="fitCenter"
|
|
android:id="@+id/status_avatar"
|
|
android:layout_below="@+id/status_reblogged_bar"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="10dp" />
|
|
|
|
<RelativeLayout
|
|
android:layout_height="wrap_content"
|
|
android:layout_toRightOf="@+id/status_avatar"
|
|
android:layout_toEndOf="@+id/status_avatar"
|
|
android:id="@+id/status_name_bar"
|
|
android:layout_below="@+id/status_reblogged_bar"
|
|
android:layout_width="match_parent"
|
|
android:paddingBottom="4dp"
|
|
android:paddingTop="@dimen/status_avatar_padding">
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content">
|
|
<TextView
|
|
android:id="@+id/status_display_name"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:textAppearance="@android:style/TextAppearance.DeviceDefault.Small"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textStyle="normal|bold"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:text="Name"
|
|
android:paddingRight="@dimen/status_display_name_right_padding" />
|
|
|
|
<TextView
|
|
android:id="@+id/status_username"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:maxLines="1"
|
|
android:ellipsize="end"
|
|
android:text="Username is the slongest thing ever i am totally going" />
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/status_since_created"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:text="20m ago"
|
|
android:textColor="?android:textColorSecondary" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<com.keylesspalace.tusky.FlowLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/status_content_warning_bar"
|
|
android:visibility="gone"
|
|
android:layout_toRightOf="@+id/status_avatar"
|
|
android:layout_toEndOf="@+id/status_avatar"
|
|
android:layout_below="@+id/status_name_bar"
|
|
android:layout_marginBottom="4dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/status_content_warning_description"
|
|
android:text="Hello world"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:paddingRight="8dp"/>
|
|
|
|
<ToggleButton
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:minWidth="0dp"
|
|
android:minHeight="0dp"
|
|
android:id="@+id/status_content_warning_button"
|
|
android:textOn="@string/status_content_warning_show_less"
|
|
android:textOff="@string/status_content_warning_show_more"
|
|
android:padding="3dp"
|
|
android:textSize="12sp"
|
|
android:background="?attr/content_warning_button" />
|
|
|
|
</com.keylesspalace.tusky.FlowLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/status_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:layout_toRightOf="@+id/status_avatar"
|
|
android:layout_toEndOf="@+id/status_avatar"
|
|
android:layout_below="@+id/status_content_warning_bar" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/status_media_preview_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_below="@+id/status_content"
|
|
android:layout_toRightOf="@+id/status_avatar">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/status_sensitive_media_warning"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/status_media_preview_top_margin"
|
|
android:padding="8dp"
|
|
android:background="?attr/sensitive_media_warning_background_color"
|
|
android:orientation="vertical"
|
|
android:visibility="gone">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAlignment="center"
|
|
android:text="@string/status_sensitive_media_title"
|
|
android:textColor="@android:color/white"
|
|
android:textStyle="normal|italic" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textAlignment="center"
|
|
android:text="@string/status_sensitive_media_directions"
|
|
android:textColor="@android:color/white" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.android.volley.toolbox.NetworkImageView
|
|
android:id="@+id/status_media_preview_0"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/status_media_preview_height"
|
|
android:layout_weight="1"
|
|
android:scaleType="centerCrop"
|
|
android:layout_marginTop="@dimen/status_media_preview_top_margin" />
|
|
|
|
<com.android.volley.toolbox.NetworkImageView
|
|
android:id="@+id/status_media_preview_1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/status_media_preview_height"
|
|
android:layout_weight="1"
|
|
android:scaleType="centerCrop"
|
|
android:layout_marginTop="@dimen/status_media_preview_top_margin" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<com.android.volley.toolbox.NetworkImageView
|
|
android:id="@+id/status_media_preview_2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/status_media_preview_height"
|
|
android:layout_weight="1"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<com.android.volley.toolbox.NetworkImageView
|
|
android:id="@+id/status_media_preview_3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="@dimen/status_media_preview_height"
|
|
android:layout_weight="1"
|
|
android:scaleType="centerCrop" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/status_media_preview_container"
|
|
android:layout_toRightOf="@+id/status_avatar"
|
|
android:paddingBottom="8dp"
|
|
android:paddingTop="10dp">
|
|
|
|
<ImageButton
|
|
app:srcCompat="@drawable/ic_reply_24dp"
|
|
android:id="@+id/status_reply"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
style="?attr/image_button_style" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageButton
|
|
app:srcCompat="@drawable/ic_repeat_24dp"
|
|
android:id="@+id/status_reblog"
|
|
style="?attr/image_button_style"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageButton
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp"
|
|
style="?attr/image_button_style"
|
|
app:srcCompat="@drawable/ic_star_24dp"
|
|
android:id="@+id/status_favourite" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<ImageButton
|
|
app:srcCompat="@drawable/ic_more_horiz_24dp"
|
|
android:id="@+id/status_more"
|
|
style="?attr/image_button_style"
|
|
android:layout_width="32dp"
|
|
android:layout_height="32dp" />
|
|
|
|
<Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |