mirror of https://github.com/ThmmyNoLife/mTHMMY
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
2.2 KiB
61 lines
2.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/card_background">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/latest_posts_row"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
android:paddingBottom="6dp"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="10dp"
|
|
android:paddingTop="6dp">
|
|
|
|
<TextView
|
|
android:id="@+id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_alignParentTop="true"
|
|
android:textAppearance="?attr/textAppearanceListItem"
|
|
android:textColor="@color/primary_text"/>
|
|
|
|
<TextView
|
|
android:id="@+id/date"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_below="@+id/title"
|
|
android:textColor="@color/secondary_text"/>
|
|
|
|
|
|
<View
|
|
android:id="@+id/spacer_divider"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_below="@+id/date"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginTop="3dp"
|
|
android:background="@color/divider"/>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentStart="true"
|
|
android:layout_below="@+id/spacer_divider">
|
|
|
|
<gr.thmmy.mthmmy.views.ReactiveWebView
|
|
android:id="@+id/post"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@color/card_background"
|
|
android:text="@string/post"/>
|
|
</FrameLayout>
|
|
</RelativeLayout>
|
|
</FrameLayout>
|