initial push of android app and bt server. these are used to make a remote usable via phone
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
Android/Resources/layout/Tabbar.axml;layout/tabbar.xml
|
||||
Android/Resources/layout/Toolbar.axml;layout/toolbar.xml
|
||||
Android/Resources/values/styles.xml;values/styles.xml
|
||||
Android/Resources/values/attrs.xml;values/attrs.xml
|
BIN
NotVPR_Remote/obj/Debug/net8.0-android/lp/156/jl/res.zip
Normal file
BIN
NotVPR_Remote/obj/Debug/net8.0-android/lp/156/jl/res.zip
Normal file
Binary file not shown.
@@ -0,0 +1 @@
|
||||
<com.google.android.material.tabs.TabLayout android:id="@+id/sliding_tabs" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" app:tabIndicatorColor="@android:color/white" app:tabGravity="fill" app:tabMode="fixed" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" />
|
@@ -0,0 +1 @@
|
||||
<com.google.android.material.appbar.MaterialToolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="wrap_content" android:background="?attr/colorPrimary" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" android:popupTheme="@style/ThemeOverlay.AppCompat.Light" xmlns:android="http://schemas.android.com/apk/res/android" />
|
@@ -0,0 +1,4 @@
|
||||
<resources xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><!--
|
||||
This defines the collectionViewStyle attribute so that we can use it
|
||||
to add the scrollbars style to the CollectionView/CarouselView renderers.
|
||||
--><declare-styleable name="ItemsViewRendererTheme"><attr name="collectionViewStyle" format="reference" /></declare-styleable><declare-styleable name="ScrollViewRendererTheme"><attr name="scrollViewStyle" format="reference" /></declare-styleable></resources>
|
@@ -0,0 +1,10 @@
|
||||
<resources xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android"><!--
|
||||
The collectionViewScrollBars style will be used as the default style for ItemsViewRenderer (the base renderer
|
||||
for CollectionView and CarouselView. We have to use a style to set up the scrollbars because there is currently
|
||||
no way to add them via code.
|
||||
|
||||
When the renderer is created, we wrap its Context's theme with collectionViewTheme; that way, the
|
||||
collectionViewScrollBars style will be defined. With the style defined (and with the collectionViewStyle
|
||||
attribute defined in attrs.xml), we can apply the collectionViewScrollBars style explicitly to the renderer we are
|
||||
creating (and avoid forcing every child control to have scrollbars).
|
||||
--><style name="scrollViewScrollBars"><item name="android:scrollbars">vertical|horizontal</item></style><style name="collectionViewTheme"><item name="collectionViewStyle">@style/scrollViewScrollBars</item></style><style name="scrollViewTheme"><item name="scrollViewStyle">@style/scrollViewScrollBars</item></style></resources>
|
Reference in New Issue
Block a user