• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. P

    how to Building and Running a Android Application with Dalvikvm?

    how to Building and Running a Android Application with Dalvikvm?
  2. P

    What permissions are required with Processbuilder?

    What permissions are required with Processbuilder?
  3. P

    How to put java files into apk with processbuilder?

    How to put java files into apk with processbuilder? What are the permissions required?
  4. P

    Keyboard Problem in Aide Program

    I'm creating a system keyboard. The problem is that the keyboard stops above the cursor in the Landscape position in the Aide program. Everything is fine in the portrait position. I also tried with other keyboards. Some have succeeded well and others have experienced the same problem. What can I...
  5. P

    How to make a soft keyboard below the text cursor position service?

    How to make a soft keyboard below the text cursor position service?
  6. P

    Help with the keyboard program

    1. How do I add a button or edittext to my keyboard? 2. How to close the popupkeyboard? 3. When you open the keyboard, move the text above it to see the cursor? package com.saulius; import android.inputmethodservice.InputMethodService; import android.inputmethodservice.Keyboard; import...
  7. P

    Where to find android keyboard shortcuts codes?

    Where to find android keyboard shortcuts codes?
  8. P

    How to select text with InputConnection?

    How to select text with InputConnection?
  9. P

    Help, Manifest file.

    I use Aide (Java). My os android 7. When installing, he writes that he will be given permissions. Although Manifest.xml wrote: <uses-sdk android:minSdkVersion="14" android:targetSdkVersion="24" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />...
  10. P

    Why does not show dialog box?

    My os android 7.Why does not show dialog box? String pe[]={android.Manifest.permission.WRITE_EXTERNAL_STORAGE}; requestPermissions(pe,0);
  11. P

    Not show dialog box

    Not show dialog box: String pe[]={android.Manifest.permission.WRITE_EXTERNAL_STORAGE}; requestPermissions(pe,0);
  12. P

    Create dialog for permissions

    How to create dialog for permission (do not use ActivityCompat!) PackageManager pm; String pe[]={android.Manifest.permission.WRITE_EXTERNAL_STORAGE}; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState)...
  13. P

    Not work radio, error message

    Error in my code?Error message: Prepare failed. :status=0x1;
  14. P

    Keyboard Add Key Programmatically

    How to keyboard add key programmatically(not constructor)? How to add rows?
  15. P

    Why is the program restarted after some time?

    Why is the program restarted after some time? Is it how it should be?
  16. P

    Which permissions do I need to play the radio?

    Which permissions do I need to play the radio?
  17. P

    How to get data from another application?

    How to get data from another application, e. g. text from textview another apk?
  18. P

    How to use addPermission ?

    How to use addPermission ? For write and read files.
  19. P

    How to add elements in list(not list.add)?

    package com.mycompany.myapp; import android.app.*; import android.os.*; import java.util.*; public class MainActivity extends Activity { List m=new ArrayList(); @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState)...
  20. P

    Why does not work mediaplayer?

    package com.example.myapplication; import android.app.ActionBar; import android.app.Activity; import android.media.AudioManager; import android.media.MediaPlayer; import android.os.Bundle; import android.widget.TextView; public class MainActivity extends Activity { MediaPlayer player = new...
  21. P

    Why does not change the keyboard's height

    Why does not change the keyboard's height? package com.example.myapplication; import android.inputmethodservice.InputMethodService; import android.inputmethodservice.Keyboard; import android.inputmethodservice.KeyboardView; import android.text.TextUtils; import android.view.View; import...
  22. P

    How to compile code from string(with exec)

    Help How to compile and run code from string(with exec)