Anyone out there that can help me using Basic4Android to
set a minimalistic text variable.
I found this:
--------------------------------------------------------------------
private void SendToMinimalisticText(Context context, String varName, String varContent)
{
Intent sendintent = new Intent("com.twofortyfouram.locale.intent.action.FIRE_SETTING");
sendintent.putExtra("de.devmil.minimaltext.locale.extras.VAR_NAME", varName);
sendintent.putExtra("de.devmil.minimaltext.locale.extras.VAR_TEXT", varContent);
context.sendBroadcast(sendintent);
}
-----------------------------------------------------------------
Is it possible to use Intents in Basic4Android to run above function ?
Can anyone show me how in that case ?
rgds Mickego
set a minimalistic text variable.
I found this:
--------------------------------------------------------------------
private void SendToMinimalisticText(Context context, String varName, String varContent)
{
Intent sendintent = new Intent("com.twofortyfouram.locale.intent.action.FIRE_SETTING");
sendintent.putExtra("de.devmil.minimaltext.locale.extras.VAR_NAME", varName);
sendintent.putExtra("de.devmil.minimaltext.locale.extras.VAR_TEXT", varContent);
context.sendBroadcast(sendintent);
}
-----------------------------------------------------------------
Is it possible to use Intents in Basic4Android to run above function ?
Can anyone show me how in that case ?
rgds Mickego