2019-09-06 17:55:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2019-01-14 11:50:42 +01:00
|
|
|
Copyright 2019 Thomas Schneider
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
This file is a part of Fedilab
|
2019-01-14 11:50:42 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2019-01-14 11:50:42 +01:00
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
Public License for more details.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with Fedilab; if not,
|
2019-01-14 11:50:42 +01:00
|
|
|
see <http://www.gnu.org/licenses>.
|
|
|
|
-->
|
2019-06-11 19:38:26 +02:00
|
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-28 10:16:47 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-01-14 11:50:42 +01:00
|
|
|
android:layout_width="match_parent"
|
2019-01-15 14:43:56 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-01-15 11:00:54 +01:00
|
|
|
android:id="@+id/pf_cardview"
|
2019-01-14 11:50:42 +01:00
|
|
|
android:layout_marginBottom="20dp"
|
|
|
|
android:layout_height="wrap_content">
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-14 11:50:42 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-01-15 11:00:54 +01:00
|
|
|
android:orientation="vertical">
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 11:00:54 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="5dp"
|
2019-01-14 11:50:42 +01:00
|
|
|
android:layout_gravity="center"
|
2019-01-15 11:00:54 +01:00
|
|
|
android:gravity="center"
|
|
|
|
android:paddingBottom="10dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:orientation="horizontal">
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 11:00:54 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/pf_pp"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 11:00:54 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:id="@+id/pf_username"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:layout_width="match_parent"
|
2019-09-28 10:16:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="RtlHardcoded" />
|
2019-01-15 11:00:54 +01:00
|
|
|
</LinearLayout>
|
2019-09-28 10:16:47 +02:00
|
|
|
<com.smarteist.autoimageslider.SliderView
|
|
|
|
android:id="@+id/imageSlider"
|
2019-09-29 15:33:59 +02:00
|
|
|
android:visibility="gone"
|
2019-01-14 11:50:42 +01:00
|
|
|
android:layout_width="match_parent"
|
2019-09-28 10:16:47 +02:00
|
|
|
android:layout_height="300dp"
|
|
|
|
app:sliderAnimationDuration="1000"
|
|
|
|
app:sliderAutoCycleDirection="back_and_forth"
|
|
|
|
app:sliderAutoCycleEnabled="true"
|
|
|
|
app:sliderCircularHandlerEnabled="true"
|
|
|
|
app:sliderIndicatorAnimationDuration="600"
|
|
|
|
app:sliderIndicatorGravity="center_horizontal|bottom"
|
|
|
|
app:sliderIndicatorMargin="15dp"
|
|
|
|
app:sliderIndicatorOrientation="horizontal"
|
|
|
|
app:sliderIndicatorPadding="3dp"
|
|
|
|
app:sliderIndicatorRadius="2dp"
|
|
|
|
app:sliderIndicatorSelectedColor="#5A5A5A"
|
|
|
|
app:sliderIndicatorUnselectedColor="#FFF"
|
|
|
|
app:sliderScrollTimeInSec="1"
|
|
|
|
app:sliderStartAutoCycle="false" />
|
2019-01-14 11:50:42 +01:00
|
|
|
|
2019-09-29 15:33:59 +02:00
|
|
|
<ImageView
|
|
|
|
android:visibility="gone"
|
|
|
|
android:id="@+id/art_media"
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
android:adjustViewBounds="true"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
2019-01-14 11:50:42 +01:00
|
|
|
<LinearLayout
|
2019-01-15 11:00:54 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:paddingBottom="5dp"
|
2019-01-14 11:50:42 +01:00
|
|
|
android:layout_height="wrap_content"
|
2019-01-15 11:00:54 +01:00
|
|
|
android:orientation="vertical">
|
2019-01-14 11:50:42 +01:00
|
|
|
|
2019-01-15 11:00:54 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal">
|
2019-01-15 14:43:56 +01:00
|
|
|
|
|
|
|
<com.varunest.sparkbutton.SparkButton
|
2019-01-15 11:00:54 +01:00
|
|
|
android:id="@+id/pf_fav"
|
2019-01-15 14:43:56 +01:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
app:sparkbutton_activeImage="@drawable/ic_pixelfed_favorite"
|
|
|
|
app:sparkbutton_inActiveImage="@drawable/ic_pixelfed_favorite_border"
|
|
|
|
android:contentDescription="@string/favourite"
|
2019-09-06 17:55:14 +02:00
|
|
|
app:sparkbutton_iconSize="30dp" />
|
|
|
|
|
2019-01-15 11:00:54 +01:00
|
|
|
<ImageView
|
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:id="@+id/pf_comment"
|
|
|
|
android:contentDescription="@string/leave_a_comment"
|
|
|
|
android:src="@drawable/ic_pixelfed_comment"
|
2019-01-15 14:43:56 +01:00
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 16:36:30 +01:00
|
|
|
<com.varunest.sparkbutton.SparkButton
|
2019-01-15 11:00:54 +01:00
|
|
|
android:layout_marginStart="15dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:id="@+id/pf_share"
|
2019-09-27 18:03:49 +02:00
|
|
|
app:sparkbutton_activeImage="@drawable/ic_repeat_boost"
|
|
|
|
app:sparkbutton_inActiveImage="@drawable/ic_repeat"
|
2019-01-15 16:36:30 +01:00
|
|
|
android:contentDescription="@string/share"
|
2019-01-15 14:43:56 +01:00
|
|
|
android:layout_width="30dp"
|
2019-01-15 16:36:30 +01:00
|
|
|
android:layout_height="30dp"
|
2019-09-06 17:55:14 +02:00
|
|
|
app:sparkbutton_iconSize="30dp" />
|
2019-01-15 14:43:56 +01:00
|
|
|
</LinearLayout>
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 14:43:56 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/pf_bottom_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 14:43:56 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:id="@+id/pf_likes"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-01-15 14:43:56 +01:00
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:id="@+id/pf_description"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:id="@+id/pf_date"
|
2019-01-15 11:00:54 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
</LinearLayout>
|
2019-01-14 11:50:42 +01:00
|
|
|
|
2019-01-15 11:00:54 +01:00
|
|
|
</LinearLayout>
|
2019-09-29 15:02:49 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
2019-09-27 19:51:20 +02:00
|
|
|
android:id="@+id/pixelfed_comments"
|
2019-09-27 18:52:42 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-09-29 15:02:49 +02:00
|
|
|
android:layout_height="wrap_content">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/lv_comments"
|
2019-09-27 19:51:20 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-09-29 15:02:49 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollbars="none" />
|
2019-09-27 19:51:20 +02:00
|
|
|
<include
|
|
|
|
layout="@layout/layout_quick_reply"
|
2019-09-27 18:52:42 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-27 19:51:20 +02:00
|
|
|
android:layout_marginTop="10dp"
|
2019-09-29 15:02:49 +02:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
2019-09-27 19:51:20 +02:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2019-06-11 19:38:26 +02:00
|
|
|
</androidx.cardview.widget.CardView>
|