Questions tagged [basic4android]

Basic4android (Basic for Android) is a simple and powerful development environment for developers of Android applications

Basic4android (Basic for Android) is a simple and powerful development environment for developers of Android applications

Site: http://www.b4x.com

It's called Visual Basic for Android too.

223 questions
1
vote
2 answers

Page navigation on Android using Basic4android

I am new to Android programming. Using VB, how to navigate from one page to another page using Basic4android tool in www.basic4android.com Code will be startacticity("login")
Rajkumar Reddy
  • 2,357
  • 6
  • 24
  • 29
1
vote
1 answer

Displye IMEI in B4a

I want Displaye IMEI in B4a but i have error in my code Basic4android Dim pi as PhoneId Dim a as String a=pi.GetDdeviceId toastmessage(a,true) basic4android
john
  • 11
  • 1
1
vote
1 answer

Camera timer intent

I need to use the camera for my application with a countdown timer. That is, when called, the camera should open with an automatic 3-second timer via intent. So far, I am able to open the system camera, take a picture and save it. But now how to set…
Praharsh Bhatt
  • 556
  • 5
  • 24
1
vote
1 answer

How Can GetElement From This Code

I'm using Basic4Android, and I want to get elements from this code. This is my site code:
  • javascript
  • Lucas Pools
    • 25
    • 1
    • 3
    1
    vote
    3 answers

    How can I change starting activity in Basic4Android?

    Is there a way to change starting activity in Basic4Android? Always Main activity automatic added and set the starting activity. Program not let to change its name too... Is it possible?
    Serhat MERCAN
    • 1,078
    • 3
    • 14
    • 31
    1
    vote
    1 answer

    Using edittext as a word checker

    So I'm new to the world of java & android coding coding. Basically I want to make a code checker that checks if the code entered is correct. If it is then it gives the message "Code Verified". So as an example, I enter 'Test', which should be…
    MrMC
    • 113
    • 4
    1
    vote
    0 answers

    How to capture images automatically in basic4android

    Hello I am creating an application in which camera captures images automatically at a interval of 1 second. In below code I can take images on button click. But I want auto-camera. Here is the code. Please help me how can I create? Sub…
    ching lee
    • 11
    • 7
    1
    vote
    1 answer

    Basic4Android shuffle code

    Basically I need this Visual Basic code translated to Basic4Android code. What I want to do is to randomly assign to 16 buttons values from 1-15 and one empty. Each time they will be different. I've done it in VB and it works but know I want to make…
    user3478487
    • 1,165
    • 2
    • 8
    • 10
    1
    vote
    1 answer

    Using Tooleap SDK with Basic4Android

    I've been trying to make an app with a floating window (multitasking capabilities). recently I ran into an SDK that allows me to create floating apps called Tooleap. I've gone over their documentation. My problem is that i'm developing my app using…
    devdev
    • 33
    • 6
    1
    vote
    5 answers

    How to create round cornered textbox in Basic4Android

    I am trying to customize the UI of application in Basi4Application. Its been just 3 days am using it. So I need help with customization of UI. So far I have made this changes and still learning. Can anyone point me to any tutorials or website which…
    Mayur
    • 789
    • 10
    • 37
    1
    vote
    1 answer

    How is Basic4Android IDE to create complex application

    I am planning to create a complex application which has lots of Database requests and Network data sending back and forth. Is it advisable to use Basic4Android(B4A). I am confused ? I downloaded the trail version and liked it because its easy…
    Mayur
    • 789
    • 10
    • 37
    1
    vote
    1 answer

    Quickblox Basic4Android Signature Generation

    I am getting an invalid signature error when trying to create a QuickBlox session: Private Sub GenerateSignature() As String Dim timestamp As Long : timestamp = DateTime.Now / 1000 Dim nonce As Int : nonce = Rnd(1, 1000) Dim signatureParams As…
    1
    vote
    1 answer

    How to create plugin for B4A

    i need to create activity for b4a, so i have 2 questions: 1. is it possible to add java activity to b4a? its possible in unity, but is it possible here? 2. if not, how do i create a library for b4a ? i tried find answer for that on the net, but…
    Dima
    • 8,586
    • 4
    • 28
    • 57
    1
    vote
    2 answers

    Write/Read then Save text file Basic4Android

    I'm creating an application on Basic4android that collects GPS coordinates and equipment deficiencies in a dropdown list (Spinner). The GPS coordinates consists of latitude and longitude shows up on a label field when GPS is ON and the deficiencies…
    user2712056
    • 13
    • 1
    • 4
    1
    vote
    1 answer

    How to go to a certain pixel in ScrollView in Basic4android

    I am currently making a comic app n for the pictures, i am usin a scrollview. Since there are many pictures, i want to create a Box where the picture's name is typed and it takes you to the picture in the contained activity.. How can i do so?