TQ 210はAndroid 4を搭載.0.3システム構築のBEEPドライバからHALからJNIへアプリケーションへ(上位アプリケーション編)

2793 ワード

実は上層応用編は簡単です
BeepActivityについてJAvaで注意が必要なのは、パッケージ名、クラス名、メソッド名の作成は必ずJNIレイヤ定義のメソッド名と一致しなければなりません.そうしないと、JNIレイヤのメソッドが見つからないことを示します.
例えばパッケージ名com.under.beepクラス名BeepActivity方法名beepOn
  BeepActivity.java
package com.under.beep;

import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.view.Menu;
import android.view.View;
import android.widget.CheckBox;

public class BeepActivity extends Activity {

	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_beep);
		if(!beepInit())  //        
		{
			new AlertDialog.Builder(BeepActivity.this).setTitle("error").setMessage("failed to init beep.").setPositiveButton("  ", null).show();
		}
	}

	
	public void checkOnOff(View view)
	{
		switch (view.getId()) {
		case R.id.checkBox1: //        
			CheckBox checkBox=(CheckBox)view;
			if(checkBox.isChecked()) beepOn(1);
			else beepOff(0);
			break;
		case R.id.button1:  //    
			this.finish();
			break;
		}
		
		
	}
	
	//    
	public native boolean beepOn(int cmd);
	public native boolean beepOff(int cmd);
	public native boolean beepInit();
	public native boolean beepClose();
	
	//       
	static{
		System.loadLibrary("beepunder");
	}
	
	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.beep, menu);
		return true;
	}

}

レイアウトファイル
activity_beep.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".BeepActivity" >

    <CheckBox
        android:id="@+id/checkBox1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="checkOnOff"
        android:text="     " />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:onClick="checkOnOff"
        android:text="  " />

</LinearLayout>