diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 17:02:50 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 17:02:50 +0300 |
| commit | 20c4ac9393faa5cd6318e8644864e8b6195288bb (patch) | |
| tree | b16adec1f95a676a8e1d7c267113b37e3eae7b73 /org.fox.ttrss/src/main/res/layout | |
| parent | 30e5f028f7ade469d87b12f0f68d228be511ed2e (diff) | |
remove additional buttons from article header, limit buttons to toolbar
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout')
| -rwxr-xr-x | org.fox.ttrss/src/main/res/layout/fragment_article.xml | 28 |
1 files changed, 1 insertions, 27 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/fragment_article.xml b/org.fox.ttrss/src/main/res/layout/fragment_article.xml index e78ab258..990ede49 100755 --- a/org.fox.ttrss/src/main/res/layout/fragment_article.xml +++ b/org.fox.ttrss/src/main/res/layout/fragment_article.xml @@ -43,35 +43,9 @@ android:textAlignment="viewStart" android:textColor="?colorPrimary" tools:text="Unreasonably long article title blah blah blah blah blah blah" - android:textSize="16sp" + android:textSize="18sp" android:gravity="start" /> - <com.google.android.material.button.MaterialButton - style="?attr/materialIconButtonStyle" - android:id="@+id/score" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_weight="0" - app:icon="?ic_action_trending_flat" - android:layout_gravity="center_vertical|end" /> - - <com.google.android.material.button.MaterialButton - style="?attr/materialIconButtonStyle" - android:id="@+id/attachments" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_weight="0" - app:icon="?ic_attachment_vert" - android:layout_gravity="center_vertical|end" /> - - <com.google.android.material.button.MaterialButton - style="?attr/materialIconButtonStyle" - android:id="@+id/share" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_weight="0" - app:icon="?ic_share" - android:layout_gravity="center_vertical|end" /> </LinearLayout> <TextView |