<activity
            android:name=".MyActivity"
            android:label="@string/app_name" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" >
                </action>
            </intent-filter>
        </activity>
  

上記がないと

Caused by: java.lang.SecurityException: Permission Denial: starting Intent { 
act=android.intent.action.MAIN cmp=jp.hotaka.hoge/.MyActivity (has extras) } 
from ProcessRecord{44ff5c30 891:jp.hotaka.hogehoge/10047} (pid=891, uid=10047) 
requires null

が発生

sqlite3 database.db
pragma table_info( TABLE_NAME ) 


Cursor ti = db.rawQuery("PRAGMA table_info(" + tableName + ")", null);
if (ti.moveToFirst()) {
	do {
		System.out.println("col: " + ti.getString(1));
	} while (ti.moveToNext());
}
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <ScrollView
        android:id="@+id/ScrollView"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <LinearLayout
            android:id="@+id/LinearLayout"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical" >

            <!-- 追加したいViewを追加する スクロールが必要な時、出力される -->

        </LinearLayout>
    </ScrollView>

</LinearLayout>

中央のみ以下を設定
android:layout_weight=”1″

その他のレイアウトのときは、LinerLayout に入れて中央のみ layout_weigt=”1″ 指定する

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="top"
        android:text="上側固定"
        android:gravity="center_horizontal"/>


    <ListView
        android:id="@+id/listView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        android:layout_weight="1"

         >

    </ListView>

    <Button
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="下側固定" />

</LinearLayout>
    <TextView
        android:id="@+id/text_category_id"
        android:layout_width="30dp"
        android:layout_height="wrap_content"
        android:layout_marginRight="10dp"

        android:gravity="right"

         />

上記でTextView 枠の中で右基準になる。
layout_width が wrap_content だと あまり意味がない
TextView の位置を変えるには、

android:layout_gravity だよ

テーブルの項目名に日本語を使用
とりあえず動いた

CREATE TABLE [T_カテゴリ] ([ID] INTEGER NOT NULL,
[NO] INTEGER DEFAULT ‘0’,
[出題対象] VARCHAR(2) NOT NULL,
[カテゴリID] INTEGER DEFAULT ‘0’ UNIQUE,
[カテゴリ名] VARCHAR(50),
[問題数] INTEGER DEFAULT ‘0’,
[出題数] INTEGER DEFAULT ‘0’,
[正解率(英和)] INTEGER DEFAULT ‘0’, 
[正解率(和英)] INTEGER DEFAULT ‘0’, 
[正解率(スペル)] INTEGER DEFAULT ‘0’,
[表示許可] VARCHAR(2) NOT NULL,
[レベル] INTEGER DEFAULT ‘0’,
[学習日付] VARCHAR(15),
PRIMARY KEY(ID)
);

がっ、以下のメソッドは”[]”は不要

mCursor.getColumnIndex(“カテゴリID”)

すでに jp.hoge.boke がある

指定したパッケージ jp.hoge
書き込みが出来なくてエラーとなる

小一時間、はまる(^_^;)

    //ファイルに保存
    try {
        byte[] w=bmp2data(bitmap,Bitmap.CompressFormat.JPEG,80);
        writeDataFile("snapshot.jpg",w);
    } catch (Exception e) {
        android.util.Log.e("",e.toString());
    }
  
    //Bitmap→バイトデータ
    static byte[] bmp2data(Bitmap src,
        Bitmap.CompressFormat format,int quality) {
        ByteArrayOutputStream os=new ByteArrayOutputStream();
        src.compress(format,quality,os);
        return os.toByteArray();
    }
    //ファイルへのバイトデータ書き込み
    void writeDataFile(String name,byte[] w) throws Exception {
        OutputStream out=null;
        try {
            out=openFileOutput(name,Context.MODE_WORLD_READABLE);
            out.write(w,0,w.length);
            out.close();
        } catch (Exception e) {
        	e.printStackTrace();
            try {
                if (out!=null) out.close();
            } catch (Exception e2) {

            }

            throw e;
        }
    }
   		// ショートカットインテントを作成
            // Intent shortcutIntent=new Intent(Intent.ACTION_VIEW);
    		Intent shortcutIntent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:0123456789"));

            //shortcutIntent.setClassName(this, MySampleActivity.class.getName());

            // メッセージを設定
            shortcutIntent.putExtra("MESSAGE","WE ARE TECHBOOSTER!!!");

            // インテント送信
            sendBroadcast(makeIntent("shortcut2", shortcutIntent));

    void setImageFileFromHttp( String strUrl ) {
    	URL url ;
		try {
			url = new URL( strUrl );
		} catch (MalformedURLException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
			return ;
		}
    	InputStream input;
		try {
			input = url.openStream();
		} catch (IOException e) {
			// TODO 自動生成された catch ブロック
			e.printStackTrace();
			return ;
		}
    	Bitmap bitmap= BitmapFactory.decodeStream(input);
    	txtUrl.setText( strUrl );
    	// Androidだと、こんな感じでイメージのダウンロードが出来るのでした。
    	// 後は、ImageViewなら、そのままsetImageBitmapメソッドなどでイメージを設定できるはずです。
    	imgView.setImageBitmap(bitmap);

    }
© 2024 Falco Tech Blog Suffusion theme by Sayontan Sinha