Click here to Skip to main content
15,883,901 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hi all,
i am working in android ndk using java api.Please help me.
My code in NativeLib.java
package com.marakana;
import android.R.bool;
import android.content.Context;
import android.view.inputmethod.InputMethodManager;
public class NativeLib {
static {
    System.loadLibrary("ndk_demo");
}
Context mContext;
 public NativeLib(NDKDemo ndkDemo) {
	}
public  void Keyboard(Context mContext){
	       this.mContext = mContext;
	  }
 public  void  getSystemService(bool makevisible){
     if(makevisible != null){
	        InputMethodManager m = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
	        m.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
     }
     else
     {
    	 InputMethodManager m = (InputMethodManager)mContext.getSystemService(Context.INPUT_METHOD_SERVICE);
	        m.toggleSoftInput(0, 0);
     }
     }
  public native void  openKeyBoard();
 }


com_marakana_NativeLib.h

C++
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class com_marakana_NativeLib */

#ifndef _Included_com_marakana_NativeLib
#define _Included_com_marakana_NativeLib
#ifdef __cplusplus
extern "C" {
#endif
/*
 * Class:     com_marakana_NativeLib
 * Method:    add
 * Signature: (II)I
 */

JNIEXPORT jstring JNICALL Java_com_marakana_NativeLib_openKeyBoard
  (JNIEnv *, jobject);

#ifdef __cplusplus
}
#endif
#endif


1.How to impliment java function in c/c++
2.how to call c++ function by java for display keyboard.

Please help me.

Thanks in advace.
Posted
Updated 17-Sep-12 20:18pm
v2

1 solution

If you need to learn how to use the JNI then see the developers guide[^].


I notice that this is the fourth time you have asked what is, essentially, the same question, so what have you actually tried up to now and what results have you obtained?
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900