Add files via upload

This commit is contained in:
DAv10195
2019-06-20 03:33:53 +03:00
committed by GitHub
commit 5b70036f18
27 changed files with 799 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
</resources>
+3
View File
@@ -0,0 +1,3 @@
<resources>
<dimen name="fab_margin">16dp</dimen>
</resources>
+10
View File
@@ -0,0 +1,10 @@
<resources>
<string name="app_name">Ex4</string>
<string name="welcome_str">Welcome To FlightInterp Android</string>
<string name="ip_str">IP:</string>
<string name="port_str">Port:</string>
<string name="ip_val_str">Enter IP here</string>
<string name="port_val_str">Enter port here</string>
<string name="connect_str">Connect</string>
<string name="title_activity_joystick">JoystickActivity</string>
</resources>
+20
View File
@@ -0,0 +1,20 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>