2015-02-09

2015 拜佛、念佛記數器 IOS APP 上架 流程 步驟 說明

所先當然先將APP寫好 然後 測試完成沒有BUG

上架步驟1:到 Apple Developer 註冊一個新的APP ID

步驟2: Certificates 的 Production 要增加一個簽證
步驟3: 增加 Profiles Distributions
簽證大概就是這三個要做,其實我也不是很清楚真確的步驟 每次上架APP都弄好久,想說把圖抓出來大家會比較清楚。
步驟四: XCODE APP ICON 要先設定好
把這些圖都設定好

步驟五:APP設定 Profile

步驟六:在 iTunes Connect 我的App 增加APP
增加APP要特別注意下圖 2015-10-07 原來SKU可以自己命名 不要重複即可
下圖是錯誤的觀念


步驟七:增加完成 開始填入 APP 相關資訊
完成後先按儲存
步驟八:上傳APP程式

 下圖是 檢查成功了
下圖 點選 Submit 正式上傳APP
上傳成功 如下圖
步驟九:回到 iTuns Connect APP 編輯
步驟十: 價格設定

價格及日期 設定好 就可以 提交 送審了
步驟十一:提交審查選項 現在已經有中文了 真方便

提交審查完成  狀態:正在等待審核

就這樣 等待審核完成 通知,若核准 在 App Store 就可以找到 APP安裝了 ^_^*

2015-02-04

Android Studio App 開發 記錄一些常用功能

// 設定不休眠
getWindow().addFlags(android.view.WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);

// 播放音效
SoundPool mySound;
mySound = new SoundPool(1, AudioManager.STREAM_MUSIC, 0);
ensId = mySound.load(this, R.raw.ens, 1);
mySound.play(ensId, 1, 1, 1, 0, 1);

// 播放音樂
MediaPlayer mp;
mp = MediaPlayer.create(MainActivity.this, R.raw.amitabha);
if (mp.isPlaying()) {  // 播放中
   mp.pause(); // 音樂暫停
} else {
    mp.start(); // 播放
    mp.setLooping(true); // 設定單曲循環播放
}

// 切換到念佛頁面
Button gotoBuddhaPage = (Button)findViewById(R.id.PageToBuddha);
gotoBuddhaPage.setOnClickListener(
new Button.OnClickListener() {
   public void onClick(View v) {
if (mp.isPlaying()) { mp.stop();  }
Intent intent = new Intent();
intent.setClass(MainActivity.this, MainActivity2.class);
startActivity(intent);
finish();
   }
}
);

// 儲存記數記錄
SharedPreferences preferences = getSharedPreferences("preCount3File", MODE_PRIVATE);
preferences.edit().putInt("counter", counter).apply(); // this or submit();
// 讀取記數記錄
counter = preferences.getInt("counter", 0);

// 顯示 記數數值
TextView showCount = (TextView)findViewById(R.id.showCount);
showCount.setText(String.valueOf(++counter));

// 設定按鈕字體顏色
Button PTB;
PTB = (Button)findViewById(R.id.PrayToBuddha);
PTB.setTextColor(Color.BLACK);
PTB.setTextColor(Color.BLUE);
// 設定按鈕背景顏色
Button clickBtn = (Button)findViewById(R.id.click_btn); // 按我
clickBtn.setBackgroundColor(Color.parseColor("#ffffbba8"));
clickBtn.setBackgroundColor(Color.parseColor("#ffa1c9ff"));

// 計時功能
private boolean startflag=false;
private int tsec=0,csec=0,cmin=0,chour=0;
Timer timer01 =new Timer(); //宣告Timer
timer01.schedule(task, 0,1000); //設定Timer(task為執行內容,0代表立刻開始,間格1秒執行一次)
private TimerTask task = new TimerTask(){
   @Override
   public void run() {
      if (startflag){
         tsec++; //如果startflag是true則每秒tsec+1
         Message message = new Message();
         message.what = 1; //傳送訊息1
         handler.sendMessage(message);
      }
   }
}
// 顯示計時
TextView timer = (TextView)findViewById(R.id.tvTimer);
timer.setText(secTimeFormat()); //s字串為00:00:00格式
private String secTimeFormat() {
   if (tsec >= 3600) {
      chour=tsec/3600;
      cmin=(tsec-chour*3600)/60;
      csec=tsec%60;
   } else {
      cmin=tsec/60;
      csec=tsec%60;
   }
   String s="";
   if(chour <10 chour="" p="" s="0">   else s=""+chour;
   if(cmin <10 cmin="" p="" s="s+">   else s=s+":"+cmin;
   if(csec < 10) s=s+":0"+csec;
   else s=s+":"+csec;
   return s;
}



xcode app swift 記錄一些常用功能

設定 APP 不休眠
UIApplication.sharedApplication().idleTimerDisabled = true

2015-02-03

網頁 使用 lightbox 遇到的2個問題 記錄一下

如何使用 請看下圖說明
第一個問題是 用 innerHTML 加入連結時 不能有 雙引號

第二個問題 IE瀏覽器 使用 lightbox 圖片無法顯示問題
需要再 網頁 最上頭 宣告 下圖 這一行,2015-02-24 這一行加入後 會影響連結的語法設定 所以要注意