2 個由手機裡, 一些特別步驟開啟. 另外 2 個由專門 Apps 叫用...
- lollipop 遊戲
- 開發人員選項
- Battery Percent
- Unlimited Screen Recorder
https://play.google.com/store/apps/details?id=org.mistygames.screenrecord
影片裡有更詳盡解說...
<!-- Start 一鍵調整大小 (放在第一個 class='post-outer' 之後) --> <div align='right' style='margin-top:-35px;'><h2> <a href='http://freetongdiy.blogspot.hk/2014/12/blogspot.html' target='_blank' title='Blogspot 文章文字 一鍵調整大小 程式設計:FreeTong'><img src='https://www.google.com/images/icons/product/blogger-16.png'/></a> <button onclick='resizeText(-1)' style='color: black;'><b>A-</b></button> <button onclick='resizeText(0)' style='color: black;'><b>A</b></button> <button onclick='resizeText(1)' style='color: black;'><b>A+</b></button> | <button onclick='sidebarToggle()' style='color: black;'><b>«»;</b></button> </h2></div> <!-- End 一鍵調整大小 (放在第一個 class='post-outer' 之後) -->
<!-- Start 一鍵調整大小 (放在 </body> 之前) -->
<!-- class='column-center-outer' id='myPosts' -->
<!-- class='column-left-outer' id='myLeft' -->
<!-- class='column-right-outer'  id='myRight' -->
<script>
//<![CDATA[
var myLeftWidth = 360; //左側邊欄,因應不同範本,自行輸入寬度
var myRightWidth = 180; //右側邊欄,因應不同範本,自行輸入寬度
var myPostsWidth = 490; //文章 post,因應不同範本,自行輸入寬度
setTimeout('myPosts.style.fontSize = get_Cookie("rsText")', 0);
setTimeout('sidebarOff(get_Cookie("sbOnOff"))', 0);
function sidebarOff(OnOff) {
  if (OnOff == "Off") {
    myLeft.style.display = "none";
    myRight.style.display = "none";
    myPosts.style.marginLeft = -myLeftWidth+"px";
    myPosts.style.width = (myPostsWidth+myLeftWidth+myRightWidth)+"px";
  } else {
    myLeft.style.display = "block";
    myRight.style.display = "block";
    myPosts.style.marginLeft = "0";
    myPosts.style.width = "100%";
  }
  set_Cookie("sbOnOff", OnOff);
}
function resizeText(multiplier) {
  if (myPosts.style.fontSize == "" || multiplier == 0) {
    myPosts.style.fontSize = "1.0em";
  }
  myPosts.style.fontSize = parseFloat(myPosts.style.fontSize) + (multiplier * 0.2) + "em";
  set_Cookie("rsText", myPosts.style.fontSize);
}
function set_Cookie(name, value) {
  document.cookie = name + "=" + value + "; doBlog1=" + location.hostname + "; path=/;"
}
function get_Cookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for (var i = 0; i < ca.length; i++) {
    var c = ca[i];
    while (c.charAt(0) == ' ') c = c.substring(1, c.length);
    if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length, c.length);
  }
  return null;
}
function sidebarToggle() {
  if (get_Cookie("sbOnOff") != "Off"){
    sidebarOff("Off");
  }else{
    sidebarOff("On");
  }
}
//]]>
</script>
<!-- Start 一鍵調整大小 (放在 </body> 之前) -->

