Tengo una base de datos que la actividad crea así:<br><br><span style="color: rgb(51, 51, 255);"># Directorio para crear la base de datos</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">directorio_base = os.path.join(activity.get_activity_root(), &#39;data/&#39;)</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">mi_base = os.path.join(directorio_base + &quot;Radios.db&quot;)</span><br style="color: rgb(153, 0, 0);"><br style="color: rgb(153, 0, 0);"><span style="color: rgb(51, 51, 255);"># Si el directorio no existe, crearlo</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">if not os.path.exists(directorio_base):</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    os.mkdir(directorio_base)</span><br style="color: rgb(153, 0, 0);">
<br style="color: rgb(153, 0, 0);"><span style="color: rgb(51, 51, 255);"># Si la base de datos no existe, crearla</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">if not os.path.exists(mi_base):</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    BasedeDatos = ManejodeBasedeDatos(mi_base)</span><br style="color: rgb(153, 0, 0);"><span style="color: rgb(153, 0, 0);">    BasedeDatos.CrearBasededatos()</span><br style="color: rgb(153, 0, 0);">
<span style="color: rgb(153, 0, 0);">    BasedeDatos.Llenar_Base()</span><br><br>Luego, en la actividad tengo código que permite agregar datos a la base y actualizarla, sin embargo solo funciona la primera vez que ejecuto la actividad.<br>
<br>Es decir:<br><ol><li>Instalo la actividad.</li><li>La ejecuto por primera vez, con lo cual se crea la base.</li><li>Agrego 1 registro y todo funciona perfecto, los datos se almacenan y se conservan luego de reiniciar.</li>
</ol>Sin embargo, en instancias sucesivas de la actividad no puedo modificar la base de datos.<br>