Buran/app/src/main/res/layout/gemtext_quote.xml

18 lines
897 B
XML
Raw Normal View History

2021-12-02 18:11:34 +00:00
<?xml version="1.0" encoding="utf-8"?>
2022-08-06 14:42:08 +00:00
<androidx.appcompat.widget.AppCompatTextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
2022-05-24 19:38:47 +00:00
android:id="@+id/gemtext_quote_textview"
android:textSize="@dimen/default_text_size"
android:textColor="@color/stroke"
android:layout_marginLeft="@dimen/screen_margin"
android:layout_marginRight="@dimen/screen_margin"
android:paddingLeft="@dimen/default_margin_big"
android:paddingRight="@dimen/default_margin_big"
android:paddingTop="@dimen/default_margin_big"
android:paddingBottom="@dimen/default_margin_big"
android:textStyle="italic"
android:background="@drawable/block_background"
android:textIsSelectable="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2022-08-06 14:42:08 +00:00
app:lineHeight="@dimen/default_line_height" />