未整理記事

カメラーカメラビューを利用しない場合ー注意書き

Bluetooth Health Deviceと通信する
Androidによるパケット量取得 
 TrafficStats.getMobileRxBytes(); 

/sys/class/net/rmnet0/statistics/もしくは、
/sys/class/net/ppp0/statistics/配下のファイルおよび、
/proc/uid_stat/[uid]/配下のファイルの値を返して 

/proc/net/dev 


root化ツール
SuperOneClick

Zxing

windowsでのiphoneアプリ開発環境 winChain Builder



Android ファイル読み込み(res/rawフォルダ、assetsフォルダ)

ScrollViewをScrollさせない
http://visible-true.blogspot.com/2010/12/listview.html

【Android】Viewをタッチして移動させる

スクロールのイベント

scrollView.post(new Runnable() {
public void run() {
// TODO 自動生成されたメソッド・スタブ
scrollView.pageScroll(ScrollView.FOCUS_UP);
}
});

Unsupported action
That action is not currently supporred.

サポートされていない操作
現在サポートされていない操作です。


ArrayList<string> accountsInfo = new ArrayList<string>();
Account[] accounts = AccountManager.get(this).getAccounts();

AccountManager mgr = AccountManager.get(this);
Account[] accts = mgr.getAccounts();
final int count = accts.length;

Log.e("acの数", String.valueOf( count ));

for (Account account : accounts) {
       String name = account.name;
       String type = account.type;
       int describeContents = account.describeContents();
       int hashCode = account.hashCode();
       Log.e("A", "name" + name + ";;" + "type" + type );
     
   }

try {
PackageManager pm = getPackageManager();
List<ResolveInfo> activityList = pm.queryIntentActivities(intent, 0);
Log.e("メーラーの数", String.valueOf(activityList.size()) );
for (int i = 0; i < activityList.size(); i++) {
   
              ResolveInfo app = activityList.get(i);
              Log.e("アプリケーション名", app.activityInfo.name);
              //Log.e("ラベル", (String) app.loadLabel(pm));          
         }

//startActivity(intent);
startActivity(Intent.createChooser(intent, getString(R.string.app_name)));

Androidマーケットからのインストールを検知するレシーバを定義する。

  1. <receiver  
  2. android:exported="true"   
  3. android:name=".MyReceiver">  
  4.   
  5.   <intent-filter>  
  6.     <action android:name="com.android.vending.INSTALL_REFERRER"/>  
  7.   </intent-filter>  
  8.     
  9. </receiver> 
Hadoop とは大量のデータを複数のマシンに分散して処理できるオープンソースのプラットフォームです。