Menu
  • HOME
  • TAGS

Using Tooleap SDK with Basic4Android

android,multitasking,floating,basic4android,tooleap

It is indeed possible! (Why did you not post this on the B4A forums :) ) I wrote a wrapper and also a sample on how to use Tooleap with B4A. There are also links to tutorials on that post. Have a look here: http://www.basic4ppc.com/android/forum/threads/tooleap-library-floating-notifications-and-miniapps.41136/ Or here: http://habeebq.wordpress.com/category/tooleap-2/...

How can I change starting activity in Basic4Android?

basic4android

There is no way, I think it is not possible.

How connect youwave to local sql data base [closed]

android,basic4android

Try using your own IP : 192.168.X.X

Does anyone know the code for generating a barcode sanner in B4a

basic4android

You can try this http://www.b4x.com/android/forum/threads/abzxing-barcode-reader.7303/ It uses an external app (Zxing) to scan the barcode, which then returns the value of the barcode

Using edittext as a word checker

android,basic4android

From the top of my head, this should work: Button button1 = (Button) findViewById(R.id."the ID of the button"); EditText PromoCode = (EditText) findViewById(R.id."the ID of the textbox"); button1.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { if(PromoCode.getText == "Test"){ Toast toast = Toast.makeText(getApplicationContext(), "Code Verified", Toast.LENGTH_SHORT); toast.show(); }else{ Toast toast...