2011-04-14 6 views
6

Come si apre il collegamento in webview in Blackberry come iPhone e Android?Come aprire la webview in Blackberry?

Quale non dovrebbe essere aperto nel browser, dovrebbe essere aperto in Webview tramite l'applicazione.

+2

Ri-chiedere la stessa domanda non è un comportamento accettabile qui. Se vuoi attirare l'attenzione sulla tua domanda, ti sarà permesso [mettere una taglia su di essa] (http://stackoverflow.com/faq#bounty) dopo due giorni. Puoi anche [modificare la tua domanda] (http://stackoverflow.com/posts/5661777/edit) per aggiungere ulteriori informazioni, che potrebbero rendere la tua domanda più facile da comprendere e rispondere. – Will

risposta

0

Icona Opzioni -> Tavoli Host Routing -> Registra ora

Se le istruzioni di cui sopra non è riuscito, provare a fare un passo queste istruzioni una ad una

* Try getting your service books retransmitted. 
    a. Login to your BlackBerry Web Client (BWC/BIS) site. 
    b. Click "Profiles" (At the top of your BWC webpage via your PC) 
    c. Click "Send Internet Browser Service Book" 
* Try rebooting your BlackBerry by removing and reinserting battery. 
* Make sure you are running BlackBerryOS 4.0 by checking: 
    Check Options -> About 
    If you are not running at least Version 4.0, you need to download and install BlackBerryOS 4.0 then repeating all the above instructions again. 
* If that does not work, and you are on a BlackBerry Enterprise Server (BES), try re-activating your BlackBerry on BES. This may be as simple as connecting your BlackBerry to your PC and synchronizing your BlackBerry while Outlook is in ONLINE mode. 
+0

thanx Alfred .ma voglio aprire particolare sito attraverso l'applicazione che non è aperto attraverso il dispositivo Browser .so cosa posso fare per questo? – dev

4

L'equivalente Blackberry di una WebView è BrowserField. Esempio di codice da this page:

import net.rim.device.api.browser.field2.*; 
import net.rim.device.api.ui.*; 
import net.rim.device.api.ui.container.*; 

public class BrowserFieldDemo extends UiApplication 
{ 
    public static void main(String[] args) 
    { 
     BrowserFieldDemo app = new BrowserFieldDemo(); 
     app.enterEventDispatcher(); 
    } 

    public BrowserFieldDemo() 
    { 
     pushScreen(new BrowserFieldDemoScreen()); 
    } 
} 

class BrowserFieldDemoScreen extends MainScreen 
{ 
    public BrowserFieldDemoScreen() 
    { 
     BrowserFieldConfig myBrowserFieldConfig = new BrowserFieldConfig(); 
     myBrowserFieldConfig.setProperty(BrowserFieldConfig.NAVIGATION_MODE,BrowserFieldConfig.NAVIGATION_MODE_POINTER); 
     BrowserField browserField = new BrowserField(myBrowserFieldConfig); 

     add(browserField); 
     browserField.requestContent("http://www.blackberry.com"); 
    } 
} 
+0

grazie al suo bel funzionamento. ma non posso zoomare su particolari pagine del sito. È possibile in questo? – dev

+0

Forse prova a lavorare con alcune delle opzioni in [BrowserFieldConfig] (http://www.blackberry.com/developers/docs/5.0.0api/net/rim/device/api/browser/field2/BrowserFieldConfig.html). –

+0

questo è solo per il file java, giusto? ... per quanto riguarda il file xml? ... come viene visualizzato? Grazie – SnowboardBruin