Home
last modified time | relevance | path

Searched refs:pre (Results 1 – 25 of 582) sorted by relevance

12345678910>>...24

/frameworks/base/docs/html-intl/intl/zh-cn/training/multiscreen/
Dadaptui.jd49 <pre class="prettyprint">
63 </pre>
69 <pre class="prettyprint">
75 </pre>
82 <pre>
97 </pre>
101 <pre>
124 </pre>
137 <pre>
140 </pre>
[all …]
/frameworks/base/docs/html-intl/intl/ko/training/multiscreen/
Dadaptui.jd49 <pre class="prettyprint">
63 </pre>
69 <pre class="prettyprint">
75 </pre>
82 <pre>
97 </pre>
101 <pre>
124 </pre>
137 <pre>
140 </pre>
[all …]
/frameworks/base/docs/html-intl/intl/ja/training/multiscreen/
Dadaptui.jd49 <pre class="prettyprint">
63 </pre>
69 <pre class="prettyprint">
75 </pre>
82 <pre>
97 </pre>
101 <pre>
124 </pre>
137 <pre>
140 </pre>
[all …]
/frameworks/base/docs/html-intl/intl/ru/training/multiscreen/
Dadaptui.jd49 <pre class="prettyprint">
63 </pre>
69 <pre class="prettyprint">
75 </pre>
82 <pre>
97 </pre>
101 <pre>
124 </pre>
137 <pre>
140 </pre>
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/training/monitoring-device-state/
Dbattery-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
44 Intent batteryStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>// Are we charging / charged?
56 boolean acCharge = chargePlug == BATTERY_PLUGGED_AC;</pre>
67 <pre>&lt;receiver android:name=".PowerConnectionReceiver">
72 &lt;/receiver></pre>
76 <pre>public class PowerConnectionReceiver extends BroadcastReceiver {
87 }</pre>
96 <pre>int level = battery.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
99 float batteryPct = level / (float)scale;</pre>
[all …]
Ddocking-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_DOCK_EVENT);
44 Intent dockStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>int dockState = battery.getIntExtra(EXTRA_DOCK_STATE, -1);
49 boolean isDocked = dockState != Intent.EXTRA_DOCK_STATE_UNDOCKED;</pre>
62 <pre>boolean isCar = dockState == EXTRA_DOCK_STATE_CAR;
65 dockState == EXTRA_DOCK_STATE_HE_DESK;</pre>
72 <pre>&lt;action android:name="android.intent.action.ACTION_DOCK_EVENT"/></pre>
Dconnectivity-monitoring.jd42 <pre>ConnectivityManager cm =
46 boolean isConnected = activeNetwork.isConnectedOrConnecting();</pre>
55 <pre>boolean isWiFi = activeNetwork.getType() == ConnectivityManager.TYPE_WIFI;</pre>
66 <pre>&lt;action android:name="android.net.conn.CONNECTIVITY_CHANGE"/></pre>
/frameworks/base/docs/html-intl/intl/ru/training/monitoring-device-state/
Dbattery-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
44 Intent batteryStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>// Are we charging / charged?
56 boolean acCharge = chargePlug == BATTERY_PLUGGED_AC;</pre>
67 <pre>&lt;receiver android:name=".PowerConnectionReceiver">
72 &lt;/receiver></pre>
76 <pre>public class PowerConnectionReceiver extends BroadcastReceiver {
87 }</pre>
96 <pre>int level = battery.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
99 float batteryPct = level / (float)scale;</pre>
[all …]
Ddocking-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_DOCK_EVENT);
44 Intent dockStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>int dockState = battery.getIntExtra(EXTRA_DOCK_STATE, -1);
49 boolean isDocked = dockState != Intent.EXTRA_DOCK_STATE_UNDOCKED;</pre>
62 <pre>boolean isCar = dockState == EXTRA_DOCK_STATE_CAR;
65 dockState == EXTRA_DOCK_STATE_HE_DESK;</pre>
72 <pre>&lt;action android:name="android.intent.action.ACTION_DOCK_EVENT"/></pre>
Dconnectivity-monitoring.jd42 <pre>ConnectivityManager cm =
46 boolean isConnected = activeNetwork.isConnectedOrConnecting();</pre>
55 <pre>boolean isWiFi = activeNetwork.getType() == ConnectivityManager.TYPE_WIFI;</pre>
66 <pre>&lt;action android:name="android.net.conn.CONNECTIVITY_CHANGE"/></pre>
/frameworks/base/docs/html-intl/intl/ja/training/monitoring-device-state/
Dbattery-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
44 Intent batteryStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>// Are we charging / charged?
56 boolean acCharge = chargePlug == BATTERY_PLUGGED_AC;</pre>
67 <pre>&lt;receiver android:name=".PowerConnectionReceiver">
72 &lt;/receiver></pre>
76 <pre>public class PowerConnectionReceiver extends BroadcastReceiver {
87 }</pre>
96 <pre>int level = battery.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
99 float batteryPct = level / (float)scale;</pre>
[all …]
Ddocking-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_DOCK_EVENT);
44 Intent dockStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>int dockState = battery.getIntExtra(EXTRA_DOCK_STATE, -1);
49 boolean isDocked = dockState != Intent.EXTRA_DOCK_STATE_UNDOCKED;</pre>
62 <pre>boolean isCar = dockState == EXTRA_DOCK_STATE_CAR;
65 dockState == EXTRA_DOCK_STATE_HE_DESK;</pre>
72 <pre>&lt;action android:name="android.intent.action.ACTION_DOCK_EVENT"/></pre>
Dconnectivity-monitoring.jd42 <pre>ConnectivityManager cm =
46 boolean isConnected = activeNetwork.isConnectedOrConnecting();</pre>
55 <pre>boolean isWiFi = activeNetwork.getType() == ConnectivityManager.TYPE_WIFI;</pre>
66 <pre>&lt;action android:name="android.net.conn.CONNECTIVITY_CHANGE"/></pre>
/frameworks/base/docs/html-intl/intl/ko/training/monitoring-device-state/
Dbattery-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_BATTERY_CHANGED);
44 Intent batteryStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>// Are we charging / charged?
56 boolean acCharge = chargePlug == BATTERY_PLUGGED_AC;</pre>
67 <pre>&lt;receiver android:name=".PowerConnectionReceiver">
72 &lt;/receiver></pre>
76 <pre>public class PowerConnectionReceiver extends BroadcastReceiver {
87 }</pre>
96 <pre>int level = battery.getIntExtra(BatteryManager.EXTRA_LEVEL, -1);
99 float batteryPct = level / (float)scale;</pre>
[all …]
Ddocking-monitoring.jd43 <pre>IntentFilter ifilter = new IntentFilter(Intent.ACTION_DOCK_EVENT);
44 Intent dockStatus = context.registerReceiver(null, ifilter);</pre>
48 <pre>int dockState = battery.getIntExtra(EXTRA_DOCK_STATE, -1);
49 boolean isDocked = dockState != Intent.EXTRA_DOCK_STATE_UNDOCKED;</pre>
62 <pre>boolean isCar = dockState == EXTRA_DOCK_STATE_CAR;
65 dockState == EXTRA_DOCK_STATE_HE_DESK;</pre>
72 <pre>&lt;action android:name="android.intent.action.ACTION_DOCK_EVENT"/></pre>
Dconnectivity-monitoring.jd42 <pre>ConnectivityManager cm =
46 boolean isConnected = activeNetwork.isConnectedOrConnecting();</pre>
55 <pre>boolean isWiFi = activeNetwork.getType() == ConnectivityManager.TYPE_WIFI;</pre>
66 <pre>&lt;action android:name="android.net.conn.CONNECTIVITY_CHANGE"/></pre>
/frameworks/base/docs/html/tools/help/
Dsqlite3.jd17 <pre>adb [-d|-e|-s {&lt;serialNumber&gt;}] shell</pre>
21 <pre>sqlite3</pre>
35 <pre>$ adb -s emulator-5554 shell
41 </pre>
48 <pre>
50 </pre>
55 <pre>
57 </pre>
Dlayoutopt.jd22 <pre>layoutopt &lt;file_or_directory&gt; ...</pre>
26 <pre>$ layoutopt res/layout-land</pre>
27 <pre>$ layoutopt res/layout/main.xml res/layout-land/main.xml</pre>
/frameworks/base/docs/html-intl/intl/zh-cn/distribute/tools/promote/
Dlinking.jd37 <pre>http://play.google.com/store/apps/details?id=&lt;package_name&gt;</pre>
41 <pre>market://details?id=&lt;package_name&gt;</pre>
62 <pre>http://play.google.com/store/search?q=pub:&lt;publisher_name&gt;</pre>
66 <pre>market://search?q=pub:&lt;publisher_name&gt;</pre>
86 <pre>http://play.google.com/store/search?q=&lt;search_query&gt;&amp;c=apps</pre>
90 <pre>market://search?q=&lt;seach_query&gt;&amp;c=apps</pre>
109 <pre>http://play.google.com/store/apps/collection/&lt;collection_name&gt;</pre>
113 <pre>market://apps/collection/&lt;collection_name&gt;</pre>
154 <pre>
158 </pre>
/frameworks/base/docs/html/training/wearables/apps/
Dbt-debugging.jd56 <pre>
59 </pre>
62 <pre>
65 </pre>
72 <pre>
75 </pre>
83 <pre>adb -s localhost:4444 &lt;command&gt; </pre>
87 <pre>
89 </pre>
91 <pre>
[all …]
/frameworks/base/docs/html-intl/intl/ja/training/tv/playback/
Dbrowse.jd35 <pre>
49 </pre>
55 <pre>
80 </pre>
93 <pre>
114 </pre>
120 <pre>
146 </pre>
162 <pre>
166 </pre>
[all …]
Dnow-playing.jd33 <pre>
41 </pre>
49 <pre>
58 </pre>
66 <pre>
95 </pre>
101 <pre>
123 </pre>
129 <pre>
134 </pre>
Ddetails.jd39 <pre>
60 </pre>
73 <pre>
119 </pre>
132 <pre>
141 </pre>
147 <pre>
156 </pre>
162 <pre>
171 </pre>
[all …]
/frameworks/base/docs/html/training/notepad/
Dnotepad-ex3.jd45 <pre>
47 String body = extras.getString(NotesDbAdapter.KEY_BODY);</pre>
52 <pre>
58 }</pre>
65 <pre>&nbsp;&nbsp;&nbsp; private NotesDbAdapter mDbHelper;</pre>
68 <pre>
70 &nbsp;&nbsp;&nbsp; mDbHelper.open();</pre>
81 <pre>
88 </pre>
90 <pre>
[all …]
/frameworks/base/docs/html/guide/topics/resources/
Dmore-resources.jd54 <pre class="stx">
61 </pre>
86 <pre>
92 </pre>
95 <pre>
98 </pre>
100 <pre>
106 </pre>
150 <pre class="stx">
157 </pre>
[all …]

12345678910>>...24