Home | History | Annotate | Download | only in porting

Lines Matching full:bookmarks

14 <li><a href="#androidBrowserBookmarks">Customizing browser bookmarks</a></li> 
140 <a name="androidBrowserBookmarks"></a><h3>Customizing browser bookmarks</h3>
142 <p>Browser bookmarks are stored as string resources in the Browser application: <code>//android/packages/apps/Browser/res/values/strings.xml</code>. Bookmarks are defined as simple value string arrays called &quot;bookmarks&quot;. Each bookmark entry is stored as a pair of array values; the first represents the bookmark name and the second the bookmark URL. For example:</p>
144 &lt;!-- Bookmarks --&gt;
145 &lt;string-array name=&quot;bookmarks&quot;&gt;
174 <p>Like and Android application resource, the platform will load alternate resources based on the platform configuration values. See <a href="http://developer.android.com/guide/topics/resources/resources-i18n.html">Resources and Internationalization</a> in the Android SDK for details. To configure bookmarks for a specific mobile network operator, place your customized bookmarks in a separate <code>strings.xml</code> file and place it under a Mobile Network Code (MNO) specific resource folder. For example, <code>Browser/res/values-mccXXX-mncYYY/strings.xml</code> where XXX and YYY represent the three-digit MCC and two to three digit MNC values.</p>
175 <p>Android loads any configuration-specific resources as override values for the default values, so it is only necessary to include the bookmarks string-array values in this file.</p>