綁定帳號登入

Android 台灣中文網

分享 android Dialog 的樣式設定
muska1116 2015-8-14 16:03
AlertDialog.Builder dialog = new AlertDialog.Builder(MainActivity.this, AlertDialog.THEME_TRADITIONAL); //傳統主題 AlertDialog.Builder dialog = new AlertDialog.Builder(MainActivity.this, AlertDialog.THEME_HOLO_DARK); //HOLO DARK 主題 AlertDialog.Builder dialog = new AlertDia ...
個人分類: 筆記筆記筆記|855 次閱讀|0 個評論
分享 android 用 Jsoup 帶 cookie 抓取需登入的頁面資料
muska1116 2015-8-14 00:36
哈哈哈~終於成功了~~ String url = "http://www.aaa.com/modules/profile/changepass.php"; // 需要登入後才有權限瀏灠的頁面 MapString, String cookies = new HashMap(); // 存放登入後的cookie Document document = Jsoup.connect(url).cookies(cookies).timeout(30000).get(); // 傳入 cookies() 然後 get ...
個人分類: 筆記筆記筆記|890 次閱讀|0 個評論
分享 android 自定義字體
muska1116 2015-8-13 10:59
1. font 放在assets裡面: Typeface type= Typeface.createFromAsset(getAssets(),"fonts/myFont.ttf"); textView=(TextView) findViewById(R.id.main_textview); textView.setTypeface(type); 2. font 放在SD記憶卡: Typeface type= Typeface.createFromFile( new File(Environment.getExternalSt ...
個人分類: 筆記筆記筆記|434 次閱讀|0 個評論