Letzte Änderungen

2011-01-24
2011-01-16
2011-01-15
2011-01-13

Neueste Datei-Release

This Project Has Not Released Any Files

Wiki Guide

Seitenleiste

オフライン時にSDK付属ドキュメントを参照する場合のTips

Javascriptの修正

SDKに付属のドキュメントで使用されているJavascriptが正常に動作しない場合があります。

/assets/android-developer-docs.js

トップページのタブ切り替えがうまくいかない場合は、下記のように修正

  1. function loadLast(cookiePath) {
  2. // var location = window.location.href;
  3. // if (location.indexOf("/"+cookiePath+"/") != -1) {
  4. // return true;
  5. // }
  6. // var lastPage = readCookie(cookiePath + "_lastpage");
  7. // if (lastPage) {
  8. // window.location = lastPage;
  9. // return false;
  10. // }
  11. return true;
  12. }

デフォルトを日本語にするには、下記の'en''ja'に修正

  1. function getLangPref() {
  2. (省略)
  3. return (lang != 0) ? lang : 'ja';
  4. }