-4

How i can programmatically fill fields in activity of another application? It is possible? What is right way? Add: My app is root-granted. I know what is package is now in foregraund. I have name of open activity and name of field in activity. Also I have my value whitch i need to push in this field.

Tapa Save
  • 4,769
  • 5
  • 32
  • 54

2 Answers2

3

The way of inter application communication is basically through Intents in the Android world. That assumes the receiver to specify the format it expects data to arrive.

Fields in an activity are private to that application, and should not be available for other Apps. This, if it would be possible, would be a huge security hole in the platform.

You can create custom keyboards, or other input methods (IMEs), which is specified here.

Vajk Hermecz
  • 5,413
  • 2
  • 34
  • 25
  • Vajk Hermecz, you help for solution my problem. I create my custom keyboard (IME). Can i get from my IME names of alien activity and editable view ? – Tapa Save Nov 21 '12 at 11:59
0

InterProcess Communication (IPC) can be done only through the AIDL interface.

you shoul start from there

Blackbelt
  • 156,034
  • 29
  • 297
  • 305