fedilab-Android-App/app/src/main/res/layout/drawer_pixelfed.xml

128 lines
5.5 KiB
XML
Raw Normal View History

2019-01-14 11:50:42 +01:00
<?xml version="1.0" encoding="utf-8"?>
<!--
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-01-14 11:50:42 +01:00
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/pf_cardview"
2019-01-14 11:50:42 +01:00
android:layout_marginBottom="20dp"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<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"
android:gravity="center"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/pf_pp"
android:layout_gravity="center"
android:layout_width="40dp"
android:layout_height="40dp" />
<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"
android:layout_height="wrap_content" />
</LinearLayout>
<ImageView
android:id="@+id/art_media"
android:scaleType="fitCenter"
android:adjustViewBounds="true"
2019-01-14 11:50:42 +01:00
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<LinearLayout
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"
android:orientation="vertical">
2019-01-14 11:50:42 +01:00
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<com.varunest.sparkbutton.SparkButton
android:id="@+id/pf_fav"
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"
app:sparkbutton_iconSize="30dp"
/>
<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"
android:layout_width="30dp"
android:layout_height="30dp" />
2019-01-15 16:36:30 +01:00
<com.varunest.sparkbutton.SparkButton
android:layout_marginStart="15dp"
android:layout_marginLeft="15dp"
android:id="@+id/pf_share"
2019-01-15 18:06:28 +01:00
app:sparkbutton_activeImage="@drawable/ic_pixelfed_share"
app:sparkbutton_inActiveImage="@drawable/ic_pixelfed_share"
2019-01-15 16:36:30 +01:00
android:contentDescription="@string/share"
android:layout_width="30dp"
2019-01-15 16:36:30 +01:00
android:layout_height="30dp"
app:sparkbutton_iconSize="30dp"/>
</LinearLayout>
<LinearLayout
android:id="@+id/pf_bottom_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView
android:layout_marginTop="5dp"
android:textStyle="bold"
android:id="@+id/pf_likes"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<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"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
2019-01-14 11:50:42 +01:00
</LinearLayout>
2019-01-14 11:50:42 +01:00
</LinearLayout>
2019-06-11 19:38:26 +02:00
</androidx.cardview.widget.CardView>