B4A Library AndroidResources - DonManfred (first post)    Mar 19, 2021   (1 reaction) if AndroidResources3.GetApplicationString("chart_yAxis") <> null then
xChart1.YAxisName = AndroidResources3.GetApplicationString("chart_yAxis")
end if ? B4A Question How to support shortcut android:label in different languages ? - b4auser1 (first post)    Aug 31, 2015 Erel,
Thank you for the support. The AndroidResources library provides a way to localize strings in the code.
But I need to localize the value defined in the manifest file only.
It is not accessible with code (or at least I don't know how to change it with code). B4A Question Japanese - lemonisdead (first post)    Apr 21, 2015   (2 reactions) Hello, I do personally use the AndroidResource library and xml files to load a map. Its keys are the variables used Tutorial : https://www.b4x.-your-app-using-androidresources.19165/ B4A Library AHLocale library - corwin42 (first post)    Feb 01, 2017 No.
You can use the AndroidResources library for that. B4A Question ANDROID-AUTO - Erel (first post)    Jun 03, 2024   (1 reaction) Remove the XML file and add it with:
CreateResource(xml, automotive_app_desc.xml,
<automotiveApp xmlns:android="http://schemas.android.com/apk/res/android">
<uses name="notification"/>
<uses name="media"/>
</automotiveApp>)
Or make sure that the file is read only. B4A Question MapView - Overlay Marker Image too Large - adrianstanescu85 (first post)    May 27, 2015 I also noticed that on different scale/resolution devices, the AndroidResource approach gives different results, most probably because the actual pixel size of the marker image is kept. However, every marker image appears larger even so. Any idea why? B4A Question [SOLVED] Download and Open FIle - agraham (first post)    Sep 01, 2021   (1 reaction) Try
CreateResource(xml, provider_paths,
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="root" path="" />
</paths>
) B4A Question [SOLVED] Start Google Earth with KML file - agraham (first post)    Nov 27, 2021   (1 reaction) Try this instead of the one I posted above
CreateResource(xml, provider_paths,
<paths xmlns:android="http://schemas.android.com/apk/res/android">
<external-path name="downloads" path="Download" />
<external-path name="root" path="" />
</paths>
) B4A Question android:exported once again - EduardoElias (first post)    Nov 21, 2022 b4a.objects.AdminReceiver2"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data android:name="android.app.device_admin"
android:resource="@xml/device_admin" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" android:exported="true"/>
Other [new feature] Three birds with one stone - Erel (first post)    Feb 04, 2016   (12 reactions) Another important new feature:
CreateResource command in the manifest editor.
SetApplicationAttribute("android:theme", "@style/AppTheme")
CreateResource(values, theme.xml,
<resources>
<style name="AppTheme" parent="android:Theme.Material.Light">
<item name="android:colorPrimary">#FFEAC80E</i Page: 1   2   3   4   5   6   7   Powered by ColBERT |