android HashMapについて助言お願いし
初心者ですが、どうぞ宜しくお願いします。
下記コードでは、マップに 「 map.put( "Key1", "val1" ); map.put( "key2", "val2" ); 」を追加しているのですが、このデータをキーから取り出しテキストビューに表示しようとしています。
このままではエラーはないのですが、何も表示されない状況です。
初心者の無知な質問となりますが、
テキストビューへの表示方法はどのようにすればよいのでしょうか?
何か別の方法でもよいので、ご教授宜しくお願いいたします。
--------------------------------------------------------------------
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView android:text="TextView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/tv1"></TextView>
</LinearLayout>
------------------------------------------------------------
package com.test;
import java.util.HashMap;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class TestActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//1)HashMapからMapのインスタンスを生成
HashMap<String, String> map = new HashMap<String, String>();
// キーと値のペアを格納
map.put( "Key1", "val1" );
map.put( "key2", "val2" );
// 指定したキーに対応する値を取得.
String val = (String)map.get( "key1" );
// テキストビュー取得
TextView tv = (TextView)findViewById(R.id.tv1);
tv.setText(val);
}
}
補足
つくりましたよ