44 lines
1.5 KiB
XML
44 lines
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:id="@+id/main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
tools:context=".activity.SpecifisoundsActivity">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/main_top"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:background="@color/sounds_main">
|
|
|
|
<ImageView
|
|
android:id="@+id/imageview_back"
|
|
android:layout_width="44dp"
|
|
android:layout_height="44dp"
|
|
android:layout_gravity="center"
|
|
android:padding="10dp"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_centerVertical="true"
|
|
android:src="@drawable/svg_back" />
|
|
|
|
<TextView
|
|
android:id="@+id/categoryname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/white"
|
|
android:textSize="23sp" />
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerview_specific"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp" />
|
|
</LinearLayout> |