Actually let's do the thing Ariane does for quotes

This commit is contained in:
Corewala 2022-01-15 17:36:36 -05:00
parent fe37541701
commit 1b829279b9
1 changed files with 17 additions and 35 deletions

View File

@ -1,36 +1,18 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" <androidx.appcompat.widget.AppCompatTextView
android:layout_width="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content" android:id="@+id/gemtext_text_monospace_textview"
xmlns:tools="http://schemas.android.com/tools" android:textSize="@dimen/default_text_size"
xmlns:app="http://schemas.android.com/apk/res-auto"> android:textColor="@color/stroke"
android:layout_marginLeft="@dimen/screen_margin"
<androidx.cardview.widget.CardView android:layout_marginRight="@dimen/screen_margin"
android:id="@+id/rounded_image_frame" android:paddingLeft="@dimen/default_margin_big"
android:layout_width="match_parent" android:paddingRight="@dimen/default_margin_big"
android:layout_height="match_parent" android:paddingTop="@dimen/default_margin_big"
app:cardBackgroundColor="@color/code_background" android:paddingBottom="@dimen/default_margin_big"
app:cardElevation="0dp" android:textStyle="italic"
app:cardCornerRadius="@dimen/default_margin_big" android:background="@drawable/block_background"
android:layout_marginLeft="@dimen/screen_margin" android:textIsSelectable="true"
android:layout_marginRight="@dimen/screen_margin" android:layout_width="match_parent"
android:layout_marginTop="@dimen/default_margin" android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/default_margin"> android:lineHeight="@dimen/default_line_height"/>
<androidx.appcompat.widget.AppCompatTextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/gemtext_text_monospace_textview"
android:textSize="@dimen/default_text_size"
android:textColor="@color/stroke"
android:layout_marginLeft="@dimen/screen_margin"
android:layout_marginRight="@dimen/screen_margin"
android:paddingTop="@dimen/default_margin_big"
android:paddingBottom="@dimen/default_margin_big"
android:textStyle="italic"
android:textIsSelectable="true"
tools:text="an image"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:lineHeight="@dimen/default_line_height"/>
</androidx.cardview.widget.CardView>
</RelativeLayout>