Initial Commit!

This commit is contained in:
2026-08-08 22:34:33 +02:00
commit a08c09829d
100 changed files with 7031 additions and 0 deletions

View File

@@ -0,0 +1,192 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/dialog_body"
android:layout_width="match_parent"
android:layout_height="250dp"
android:orientation="vertical">
<TextView
android:id="@+id/dialog_costumtitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:textColor="#020202"
android:textStyle="bold"
android:textSize="16sp"/>
<View
android:layout_width="fill_parent"
android:layout_height="2dip"
android:padding="10dp"
android:background="#020202" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:scrollbars="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="20dp">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:paddingLeft="10dp"
android:layout_weight="0.40"
android:textColor="#020202"
android:textStyle="bold"
android:text="Jahr"/>
<TextView
android:id="@+id/dialog_date"
android:layout_width="0dp"
android:layout_height="match_parent"
android:textColor="#020202"
android:layout_weight="0.60"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="20dp">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:paddingLeft="10dp"
android:layout_weight="0.40"
android:textColor="#020202"
android:textStyle="bold"
android:text="Land"/>
<TextView
android:id="@+id/dialog_country"
android:layout_width="0dp"
android:layout_height="match_parent"
android:textColor="#020202"
android:layout_weight="0.60"/>
</LinearLayout>
<LinearLayout
android:id="@+id/dialog_categories_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:paddingLeft="10dp"
android:layout_weight="0.40"
android:textColor="#020202"
android:textStyle="bold"
android:text="Kategorie"/>
<TextView
android:id="@+id/dialog_categories"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textColor="#020202"
android:layout_weight="0.60"/>
</LinearLayout>
<LinearLayout
android:id="@+id/dialog_director_layout"
android:layout_width="match_parent"
android:layout_height="20dp">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:paddingLeft="10dp"
android:layout_weight="0.40"
android:textColor="#020202"
android:textStyle="bold"
android:text="Regisseur"/>
<TextView
android:id="@+id/dialog_director"
android:layout_width="0dp"
android:layout_height="match_parent"
android:textColor="#020202"
android:layout_weight="0.60"/>
</LinearLayout>
<LinearLayout
android:id="@+id/dialog_actors_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:paddingLeft="10dp"
android:layout_weight="0.40"
android:textColor="#020202"
android:textStyle="bold"
android:text="Schauspieler"/>
<TextView
android:id="@+id/dialog_actors"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:textColor="#020202"
android:layout_weight="0.60"/>
</LinearLayout>
<TextView
android:id="@+id/dialog_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="#020202"
android:padding="10dp" />
</LinearLayout>
</ScrollView>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="40dp"
android:layout_below="@id/dialog_body">
<LinearLayout
android:id="@+id/dialog_cancel_select"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.50"
android:background="#cccccc"
android:padding="5dp">
<Button
android:id="@+id/dialog_cancel"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#cccccc"
android:focusable="true"
android:text="Cancel" />
</LinearLayout>
<LinearLayout
android:id="@+id/dialog_ok_select"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.50"
android:background="#787878"
android:padding="5dp">
<Button
android:id="@+id/dialog_ok"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#787878"
android:focusable="true"
android:text="Ok"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>

View File

@@ -0,0 +1,67 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true">
<androidx.media3.ui.PlayerView android:id="@+id/player_view"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<LinearLayout
android:id="@+id/controls_root"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#88000000"
android:orientation="horizontal">
<Button
android:id="@+id/select_tracks_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:enabled="false"
android:text="@string/track_selection_title" />
<TextView
android:id="@+id/debug_text_view"
android:textStyle="bold"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:paddingLeft="4dp"
android:paddingRight="4dp"
android:gravity="center"
android:textColor="@android:color/white"
android:textSize="20sp" />
<TextClock
android:id="@+id/textClock"
android:textStyle="bold"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:paddingRight="4dp"
android:gravity="right"
android:textColor="@android:color/white"
android:textSize="20sp" />
</LinearLayout>
</FrameLayout>

View File

@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Copyright (C) 2016 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.exoplayertv.tvepg.epg.EPG
android:id="@+id/epg"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/epg_background"/>
</LinearLayout>

View File

@@ -0,0 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2018 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="12dp"
android:paddingEnd="12dp"
android:gravity="center_vertical"
android:orientation="horizontal">
<TextView android:id="@+id/sample_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeightSmall"
android:textAppearance="?android:attr/textAppearanceListItemSmall"/>
<ImageButton android:id="@+id/download_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/exo_download_description"
android:background="@android:color/transparent"/>
</LinearLayout>

View File

@@ -0,0 +1,59 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2018 The Android Open Source Project
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.viewpager.widget.ViewPager
android:id="@+id/track_selection_dialog_view_pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<com.google.android.material.tabs.TabLayout
android:id="@+id/track_selection_dialog_tab_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:tabGravity="fill"
app:tabMode="fixed"/>
</androidx.viewpager.widget.ViewPager>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="end">
<Button
android:id="@+id/track_selection_dialog_cancel_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@android:string/cancel"
style="?android:attr/borderlessButtonStyle"/>
<Button
android:id="@+id/track_selection_dialog_ok_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@android:string/ok"
style="?android:attr/borderlessButtonStyle"/>
</LinearLayout>
</LinearLayout>