package tk.oxore.NativeArmv6; import android.util.Log; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class DummyAct extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); TextView tv = (TextView) findViewById(R.id.sample_text); try { tv.append(helloJni()); } catch (Exception e) { Log.e("AAAAAAAAAAAAAAA", "a"); } } static { System.loadLibrary("hello-jni"); } public native String helloJni(); }