This is basic, but at least can launch on Android 4.4.
parent
5b73f1750f
commit
4d049f8310
Binary file not shown.
@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<packageSources>
|
||||||
|
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
|
||||||
|
<add key="Local (Sundew)" value="C:\Users\Me\AppData\Local\Sundew.Packaging.Publish.m\packages" />
|
||||||
|
</packageSources>
|
||||||
|
</configuration>
|
File diff suppressed because it is too large
Load Diff
@ -1,32 +1,63 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
<!--
|
||||||
|
<android.support.design.widget.CoordinatorLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent">
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
<com.google.android.material.appbar.AppBarLayout
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:theme="@style/AppTheme.AppBarOverlay">
|
|
||||||
|
|
||||||
<androidx.appcompat.widget.Toolbar
|
<android.support.v7.wid.
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="@dimen/abc_action_bar_content_inset_with_nav">
|
||||||
|
-->
|
||||||
|
<!-- TODO: Use Coordinator layout -->
|
||||||
|
<RelativeLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_height="fill_parent"
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
>
|
||||||
|
<!-- <android.support.v7.widget.Toolbar
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
android:id="@+id/toolbar"
|
android:id="@+id/toolbar"
|
||||||
|
android:theme="@android:style/ThemeOverlay.Material.Dark.ActionBar">
|
||||||
|
<LinearLayout
|
||||||
|
android:orientation="vertical"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="?attr/actionBarSize"
|
android:layout_height="match_parent"
|
||||||
android:background="?attr/colorPrimary"
|
android:gravity="center_vertical"
|
||||||
app:popupTheme="@style/AppTheme.PopupOverlay" />
|
android:id="@+id/titleText">
|
||||||
|
<TextView
|
||||||
</com.google.android.material.appbar.AppBarLayout>
|
android:text="@string/app_name"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
||||||
<include layout="@layout/content_main" />
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
<com.google.android.material.floatingactionbutton.FloatingActionButton
|
android:id="@+id/appTitleText" />
|
||||||
android:id="@+id/fab"
|
<TextView
|
||||||
|
android:text="@string/player_name"
|
||||||
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:layout_gravity="bottom|end"
|
android:id="@+id/playerNameText" />
|
||||||
android:layout_margin="@dimen/fab_margin"
|
</LinearLayout>
|
||||||
app:srcCompat="@android:drawable/ic_dialog_email" />
|
</android.support.v7.widget.Toolbar>
|
||||||
|
-->
|
||||||
|
<!-- </android.support.design.widget.AppBarLayout>
|
||||||
|
-->
|
||||||
|
|
||||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
<include layout="@layout/content_main" />
|
||||||
|
<!--<LinearLayout
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:minWidth="25px"
|
||||||
|
android:minHeight="25px"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:id="@+id/linearLayout1" />
|
||||||
|
-->
|
||||||
|
</RelativeLayout>
|
||||||
|
<!--
|
||||||
|
</android.support.design.widget.CoordinatorLayout>
|
||||||
|
-->
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<string name="app_name">QuickPlay</string>
|
<string name="app_name">QuickPlay</string>
|
||||||
<string name="action_settings">Settings</string>
|
<string name="action_settings">Settings</string>
|
||||||
|
<string name="player_name">Not Connected!</string>
|
||||||
</resources>
|
</resources>
|
||||||
|
Loading…
Reference in New Issue