• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 package com.example.hellollvm;
2 
3 import android.app.Activity;
4 import android.widget.TextView;
5 import android.os.Bundle;
6 
7 public class HelloLLVM extends Activity
8 {
9     /** Called when the activity is first created. */
10     @Override
onCreate(Bundle savedInstanceState)11     public void onCreate(Bundle savedInstanceState)
12     {
13         super.onCreate(savedInstanceState);
14 
15         TextView  tv = new TextView(this);
16         test_func();
17         tv.setText("HelloLLVM!");
18         setContentView(tv);
19     }
20 
test_func()21     public native void test_func();
22 
23     static {
24         System.loadLibrary("hello_llvm");
25     }
26 }
27