예제 #1
0
 /** 検索結果詳細画面への遷移処理 */
 public void dispSearchResultDetail(int position) {
   Log.d("DEBUG", "Search dispSearchResultDetail Start");
   // 選択リスト行データ取得
   SearchListRow slrObj = new SearchListRow();
   slrObj = lSLR.get(position);
   // アプリ内のアクティビティを呼び出すインテントの生成
   Intent intent = new Intent(this, MainTab.class);
   // インテントのパラメータ設定
   // カレンダー年月
   intent.putExtra("calym", stdObj.getStrCalendarYearMonth());
   // 選択年月日
   intent.putExtra("calymd", slrObj.getStrDate());
   // 選択元ユーザーインターフェースID
   if (slrObj.getStrSearchType().equals(getString(R.string.scsearchtarget))) {
     intent.putExtra("uiid", getString(R.string.uiid9));
   } else {
     intent.putExtra("uiid", getString(R.string.uiid10));
   }
   // キーID
   intent.putExtra("keyid", stdObj.getLgKeyId());
   startActivity(intent);
   endActivity();
   Log.d("DEBUG", "Search dispSearchResultDetail End");
 }