0
0
mirror of https://github.com/mediathekview/zapp.git synced 2024-09-20 20:23:04 +02:00

Move main ui into own package

This commit is contained in:
Christine Coenen 2021-11-13 16:52:55 +01:00
parent 5240c845b7
commit 378bbfa16b
5 changed files with 6 additions and 6 deletions

View File

@ -38,7 +38,7 @@
<!-- TODO: add banner -->
<activity
android:theme="@style/Theme.Leanback"
android:name=".tv.MainActivity"
android:name=".tv.main.MainActivity"
android:exported="true"
android:screenOrientation="landscape">
<intent-filter>

View File

@ -1,4 +1,4 @@
package de.christinecoenen.code.zapp.tv
package de.christinecoenen.code.zapp.tv.main
import android.graphics.drawable.InsetDrawable
import android.view.ViewGroup

View File

@ -1,4 +1,4 @@
package de.christinecoenen.code.zapp.tv
package de.christinecoenen.code.zapp.tv.main
import android.os.Bundle
import androidx.fragment.app.FragmentActivity

View File

@ -1,4 +1,4 @@
package de.christinecoenen.code.zapp.tv
package de.christinecoenen.code.zapp.tv.main
import android.os.Bundle
import androidx.leanback.app.VerticalGridSupportFragment

View File

@ -4,12 +4,12 @@
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".tv.MainActivity"
tools:context=".tv.main.MainActivity"
tools:deviceIds="tv">
<androidx.fragment.app.FragmentContainerView
android:id="@+id/pizza_grid_fragment"
android:name="de.christinecoenen.code.zapp.tv.MainFragment"
android:name="de.christinecoenen.code.zapp.tv.main.MainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />