39 lines
No EOL
1.5 KiB
XML
39 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout 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"
|
|
android:orientation="vertical"
|
|
tools:context=".settings.FAQActivity">
|
|
|
|
<TextView
|
|
android:id="@+id/devsTitle2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="64dp"
|
|
android:layout_marginTop="16dp"
|
|
android:fontFamily="@font/poppins"
|
|
android:gravity="center"
|
|
android:paddingStart="32dp"
|
|
android:paddingEnd="64dp"
|
|
android:text="@string/faq"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold"
|
|
app:drawableStartCompat="@drawable/ic_round_arrow_back_ios_new_24"
|
|
app:drawableTint="?attr/colorOnBackground" />
|
|
|
|
<ani.dantotsu.FadingEdgeRecyclerView
|
|
android:id="@+id/devsRecyclerView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clipToPadding="false"
|
|
android:paddingStart="8dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingEnd="8dp"
|
|
android:paddingBottom="64dp"
|
|
android:requiresFadingEdge="vertical"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
tools:itemCount="10"
|
|
tools:listitem="@layout/item_question"
|
|
tools:orientation="vertical" />
|
|
</LinearLayout> |