todo b4a
1.0.0
A nice Todo List android app created using B4A
Preview:
Made with in B4X
Download and Develop with B4A for FREE: https://www.b4x.com/b4a.html
To change the theme, add AppCompat Library and add the following lines in Manifest Editor
'This code will be applied to the manifest file during compilation.
'You do not need to modify it in most cases.
'See this link for for more information: https://www.b4x.com/forum/showthread.php?p=78136
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="28"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
'CreateResourceFromFile(Macro, Themes.LightTheme)
'End of default text.
SetApplicationAttribute(android:theme, "@style/Todo")
CreateResource(values, colors.xml,
<resources>
<color name="actionbar">#FF8A2BE2color>
<color name="statusbar">#FF8A2BE2color>
<color name="navigationBar">#FF8A2BE2color>
<color name="textColorPrimary">#FF000000color>
<color name="colorAccent">#FFE91E63color>
resources>
)
CreateResource(values, theme.xml,
<resources>
<style name="Todo" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/actionbaritem>
<item name="colorPrimaryDark">@color/statusbaritem>
<item name="android:navigationBarColor">@color/navigationBaritem>
<item name="android:textColorPrimary">@color/textColorPrimaryitem>
<item name="colorAccent">@color/colorAccentitem>
<item name="windowNoTitle">trueitem>
<item name="windowActionBar">falseitem>
<item name="windowActionModeOverlay">trueitem>
style>
resources>
)
In Main Activity, add #Extends: android.support.v7.app.AppCompatActivity
#Region Activity Attributes
#FullScreen: False
#IncludeTitle: False
#Extends: android.support.v7.app.AppCompatActivity
#IgnoreWarnings: 32
#End Region
YouTube tutorial playlist: https://youtube.com/playlist?list=PLnM2IRsCeAoanBmIThXgdDQpomr59iHKv