編輯:Android開發實例
點擊圖標進入指定浏覽器。
只需在onCreate()方法裡添加如下代碼:
String url = "http://tiger-kfphone.com/"; Uri u = Uri.parse(url); Intent intent = new Intent(Intent.ACTION_VIEW, u); // intent.setData(u); // intent.setClassName("com.android.browser", // "com.android.browser.BrowserActivity"); startActivity(intent); finish();
但是在進入浏覽器之前有一個頁面閃了一下,那是因為從那個空白的首頁跳過去的。客戶說不要那個一閃而過的頁面,說是個bug。
最後解決的辦法是把他變成透明的就好了。
在styles.xml裡添加如下代碼:
<style name="Translucent_NoTitle" parent="android:style/Theme.Dialog"> <item name="android:windowNoTitle">true</item> <item name="android:background">#00000000</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> <item name="android:windowIsTranslucent">true</item> </style>
然後在AndroidManifest裡添加如下代碼:
<activity android:name="com.hklt.link.MainActivity" android:label="@string/app_name" android:theme="@style/Translucent_NoTitle" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
本文以實例形式較為詳細的展示了Android錄音的實現方法,分享給大家供大家參考之用。具體方法如下: 首先是xml布局文件: <LinearLayout
文件main.java代碼如下:package com.HHBrowser.android;import android.app.Activity;import
登錄應用程序的屏幕,詢問憑據登錄到一些特定的應用。可能需要登錄到Facebook,微博等本章介紹了,如何創建一個登錄界面,以及如何管理安全問題和錯誤嘗試。首先,必須定義兩
JSON代表JavaScript對象符號。它是一個獨立的數據交換格式,是XML的最佳替代品。本章介紹了如何解析JSON文件,並從中提取所需的信息。Android提供了四個