mirror of
https://codeberg.org/Bazsalanszky/Infinity-For-Lemmy.git
synced 2025-10-05 21:39:50 +02:00
Viewing rules after pressing rules button in PostXXXActivity is available. Extend MarkwonView to support opening reddit subreddit and user links.
This commit is contained in:
27
app/src/main/res/layout/activity_rules.xml
Normal file
27
app/src/main/res/layout/activity_rules.xml
Normal file
@@ -0,0 +1,27 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
tools:context=".RulesActivity">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/progress_bar_rules_activity"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/recycler_view_rules_activity"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/error_text_view_rules_activity"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:visibility="gone" />
|
||||
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
@@ -42,7 +42,7 @@
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<ru.noties.markwon.view.MarkwonView
|
||||
<CustomView.CustomMarkwonView
|
||||
android:id="@+id/comment_markdown_view_item_post_comment"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
@@ -63,7 +63,7 @@
|
||||
android:textColor="@color/primaryTextColor"
|
||||
android:textSize="18sp" />
|
||||
|
||||
<ru.noties.markwon.view.MarkwonView
|
||||
<CustomView.CustomMarkwonView
|
||||
android:id="@+id/content_markdown_view_item_post_detail"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
|
22
app/src/main/res/layout/item_rule.xml
Normal file
22
app/src/main/res/layout/item_rule.xml
Normal file
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:orientation="vertical" android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/short_name_text_view_item_rule"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="16dp"
|
||||
android:textColor="@color/primaryTextColor"
|
||||
android:textSize="16sp" />
|
||||
|
||||
<CustomView.CustomMarkwonView
|
||||
android:id="@+id/description_markwon_view_item_rule"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:paddingBottom="16dp"
|
||||
android:paddingStart="16dp"
|
||||
android:paddingEnd="16dp" />
|
||||
|
||||
</LinearLayout>
|
@@ -9,6 +9,7 @@
|
||||
<string name="post_link_activity_label">Link Post</string>
|
||||
<string name="post_image_activity_label">Image Post</string>
|
||||
<string name="post_video_activity_label">Video Post</string>
|
||||
<string name="rules_activity_label">Rules</string>
|
||||
|
||||
<string name="navigation_drawer_open">Open navigation drawer</string>
|
||||
<string name="navigation_drawer_close">Close navigation drawer</string>
|
||||
@@ -124,4 +125,7 @@
|
||||
|
||||
<string name="no_flair">No flair</string>
|
||||
<string name="error_loading_flairs">Error loading flairs.\nTap to retry.</string>
|
||||
|
||||
<string name="no_rule">No rule</string>
|
||||
<string name="error_loading_rules">Error loading rules.\nTap to retry.</string>
|
||||
</resources>
|
||||
|
Reference in New Issue
Block a user