Home
last modified time | relevance | path

Searched refs:code (Results 1 – 25 of 1260) sorted by relevance

12345678910>>...51

/frameworks/base/docs/html-intl/intl/ja/guide/topics/
Dfundamentals.jd50code>aapt</code> ツール</a>を使用して Android パッケージにバンドルします。Android パッケージは、拡張子が {@code .apk} のアーカイブ ファイルです…
77 …には、他のシステムで動作するアプリケーションでよく使用されるような、アプリケーション全体にアクセスするための単一のエントリ ポイント(たとえば {@code main()} 関数)はありません。代…
98 ビューの階層は、<code>{@link android.app.Activity#setContentView Activity.setContentView()}</code> メソッドを使用し…
153 <li>アクティビティを起動する(または何か新しい処理を実行させる)には、Intent オブジェクトを <code>{@link android.content.Context#startActiv…
154 Context.startActivity()}</code> または <code>{@link
156code> に渡します。応答アクティビティで <code>{@link android.app.Activity#getIntent getIntent()}</code> メソッドを呼び出すと、…
157 android.app.Activity#onNewIntent onNewIntent()}</code> メソッドが呼び出され、アクティビティが後続のインテントに渡されます。
160code startActivity()} ではなく {@code startActivityForResult()} を呼び出します。たとえば、ユーザーに写真を選択させるアクティビティを開始する…
161 onActivityResult()}</code> メソッドに渡した Intent オブジェクトで返されます。
165 <li><p>サービスを開始する(または実行中のサービスに新しい指示を与える)には、<code>{@link
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Dvlc_decode.cpp106 uint32 code; in DecodeUserData() local
109 BitstreamShowBits32(stream, 24, &code); in DecodeUserData()
111 while (code != 1) in DecodeUserData()
115 BitstreamShowBits32(stream, 24, &code); in DecodeUserData()
455 uint code; in PV_VlcDecMV() local
457 BitstreamShow13Bits(stream, &code); in PV_VlcDecMV()
459 if (code >> 12) in PV_VlcDecMV()
466 if (code >= 512) in PV_VlcDecMV()
468 code = (code >> 8) - 2; in PV_VlcDecMV()
469 PV_BitstreamFlushBits(stream, PV_TMNMVtab0[code].len + 1); in PV_VlcDecMV()
[all …]
/frameworks/base/core/jni/
Dandroid_app_NativeActivity.cpp165 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_finish() local
166 write_work(code->mainWorkWrite, CMD_FINISH, 0); in android_NativeActivity_finish()
171 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_setWindowFormat() local
172 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FORMAT, format); in android_NativeActivity_setWindowFormat()
177 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_setWindowFlags() local
178 write_work(code->mainWorkWrite, CMD_SET_WINDOW_FLAGS, values, mask); in android_NativeActivity_setWindowFlags()
183 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_showSoftInput() local
184 write_work(code->mainWorkWrite, CMD_SHOW_SOFT_INPUT, flags); in android_NativeActivity_showSoftInput()
189 NativeCode* code = static_cast<NativeCode*>(activity); in android_NativeActivity_hideSoftInput() local
190 write_work(code->mainWorkWrite, CMD_HIDE_SOFT_INPUT, flags); in android_NativeActivity_hideSoftInput()
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/tools/help/
Dproguard.jd38 …<p>ProGuard 工具通过移除无用的代码以及使用语义隐晦的名称来重命名类、字段和方法,从而达到压缩、优化和混淆代码的目的。最终您将获得一个较小的 <code>.apk</code> 文件,此…
42 <p>本文介绍如何启用和配置 ProGuard,以及如何使用 <code>retrace</code> 工具解码混淆后的堆栈跟踪信息。</p>
46 …<p>当您创建 Android 项目时,系统会在该项目的根目录中自动生成一个 <code>proguard.cfg</code> 文件。此文件将定义 ProGuard 会如何优化和混淆代码,因此您…
48 …让其作为 Ant 或 Eclipse 构建环境的一部分运行,请在 <code>&lt;project_root&gt;/project.properties</code> 文件中设置 <code>…
50 …ote"><strong>注意</strong>:在使用 Android Studio 时,您必须将 Proguard 添加到 <code>gradle.build</code> 文件的构建类型中…
52 <p>如果您将 <code>proguard.cfg</code> 文件留在默认位置(项目的根目录中),则可以按如下格式指定其位置:</p>
64code>ant release</code> 还是通过使用 Eclipse 中的“导出向导”,构建系统都会自动检查是否设置了 <code>proguard.config</code> 属性。<e…
69 <dt><code>dump.txt</code></dt>
70 <dd>描述 <code>.apk</code> 文件中所有类文件的内部结构</dd>
72 <dt><code>mapping.txt</code></dt>
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/training/multiscreen/
Dscreensizes.jd54code>"wrap_content"</code> 和 <code>"match_parent"</code> 控制某些视图组件的宽度和高度。如果您使用 <code>"wrap_content"…
56 <p>如果使用 <code>"wrap_content"</code> 和 <code>"match_parent"</code> 尺寸值而不是硬编码的尺寸,您的视图就会相应地仅使用自身所需的空间或…
60 <p>请注意示例中使用 <code>"wrap_content"</code> 和 <code>"match_parent"</code> 控制组件尺寸的方法,而不是关注具体的尺寸。此方法可让布局正…
70 …ink android.widget.LinearLayout}</PH> 的嵌套实例并结合 <code>"wrap_content"</code> 和 <code>"match_parent"…
126 <li><code>res/layout/main.xml</code>,单面板(默认)布局:
130 <li><code>res/layout-large/main.xml</code>,双面板布局:
136 <p>请注意第二种布局名称目录中的 <code>large</code> 限定符。系统会在属于较大屏幕(例如 7 英寸或更大的平板电脑)的设备上选择此布局。系统会在较小的屏幕上选择其他布局(无限定符…
143 …屏幕上只显示列表),您可以使用上文中所述的单面板和双面板这两种布局,但您应使用 <code>sw600dp</code> 指明双面板布局仅适用于最小宽度为 600 dp 的屏幕,而不是使用 <co…
146 <li><code>res/layout/main.xml</code>,单面板(默认)布局:
150 <li><code>res/layout-sw600dp/main.xml</code>,双面板布局:
[all …]
Dscreendensities.jd46 …素定义布局尺寸就会产生问题。因此,请务必使用 <code>dp</code> 或 <code>sp</code> 单位指定尺寸。<code>dp</code> 是一种非密度制约像素,其尺寸与 16…
48 <p>例如,请使用 <code>dp</code>(而非 <code>px</code>)指定两个视图间的间距:</p>
57 <p>请务必使用 <code>sp</code> 指定文字大小:</p>
73 <li><code>xhdpi</code>:2.0
74 <li><code>hdpi</code>:1.5
75 <li><code>mdpi</code>:1.0(最低要求)
76 <li><code>ldpi</code>:0.75
79 <p>也就是说,如果您为 <code>xhdpi</code> 设备生成了 200x200 尺寸的图片,就应该使用同一资源为 <code>hdpi</code>、<code>mdpi</code> …
81 <p>然后,将生成的图片文件放在 <code>res/</code> 下的相应子目录中(如下所示),系统就会根据运行您应用的设备的屏幕密度自动选择合适的图片:</p>
96 <p>这样一来,无论您何时引用 <code>&#64;drawable/awesomeimage</code>,系统都能根据相应屏幕的 dpi 选取合适的位图。</p>
/frameworks/base/docs/html-intl/intl/ko/training/multiscreen/
Dscreensizes.jd54code>"wrap_content"</code> 및 <code>"match_parent"</code>를 사용해야 합니다. <code>"wrap_content"</code>를 사…
56 <p>하드코딩된 크기 대신 <code>"wrap_content"</code> 크기 값을 사용하면 뷰가 해당 뷰에 필요한 여백만을 사용하며 <code>"match_parent"</
60 <p>샘플에서 구성요소 크기에 특정 크기가 아닌 <code>"wrap_content"</code> 및 <code>"match_parent"</code>가 사용된 것을 눈여겨 보시…
70 …ink android.widget.LinearLayout}의 중첩 인스턴스와</PH> <code>"wrap_content"</code> 및 <code>"match_parent"…
126 <li><code>res/layout/main.xml</code>, 단일 창(기본값) 레이아웃:
130 <li><code>res/layout-large/main.xml</code>, 이중 창 레이아웃:
136 <p>두 번째 레이아웃의 디렉토리 이름에서 <code>large</code> 한정자를 눈여겨 보시기 바랍니다. 이 레이아웃은 대형(예: 7인치 태블릿 이상)으로 분류된 화면을 가…
143 …되지만, 이중 창 레이아웃은 최소 너비가 600dp인 화면에 사용한다는 것을 나타내기 위해서 <code>large</code> 크기 한정자 대신 <code>sw600dp</co…
146 <li><code>res/layout/main.xml</code>, 단일 창(기본값) 레이아웃:
150 <li><code>res/layout-sw600dp/main.xml</code>, 이중 창 레이아웃:
[all …]
Dscreendensities.jd46 … <code>dp</code> 또는 <code>sp</code> 단위를 사용하시기 바랍니다. <code>dp</code>는 160dpi에서 픽셀의 물리적 크기에 대응하는 밀도 …
48 <p>예를 들어 두 개의 보기 사이에 여백을 지정할 때 <code>px</code>가 아닌 <code>dp</code>를 사용합니다.</p>
57 <p>텍스트 크기를 지정할 때에는 항상 <code>sp</code>를 사용합니다.</p>
73 <li><code>xhdpi</code>: 2.0
74 <li><code>hdpi</code>: 1.5
75 <li><code>mdpi</code>: 1.0 (기선)
76 <li><code>ldpi</code>: 0.75
79 …<code>xhdpi</code> 기기에 대해 200x200 이미지를 생성하는 경우 <code>hdpi</code> 기기에 대해 동일한 리소스를 150x150으로 생성해야 하며…
81 <p>그런 다음 생성된 이미지 파일을 <code>res/</code> 아래의 적절한 하위 디렉토리에 배치하면 시스템에서 애플리케이션이 실행되는 기기의 화면 밀도에 따라 정확한 이…
96 <p>그런 다음 언제든지 <code>&#64;drawable/awesomeimage</code>를 참조하면 시스템이 화면의 dpi에 따라 적합한 비트맵을 선택합니다.</p>
/frameworks/base/docs/html-intl/intl/ja/training/multiscreen/
Dscreensizes.jd54code>"wrap_content"</code> と <code>"match_parent"</code> を使用する必要があります。<code>"wrap_content"</code> …
56 <p>ハードコーディングされたサイズの代わりに <code>"wrap_content"</code> と <code>"match_parent"</code> を使用することで、ビューはそれぞれ…
60 <p>このサンプルでは、特定のサイズではない <code>"wrap_content"</code> と <code>"match_parent"</code> をコンポーネント サイズにどのように…
70 …link android.widget.LinearLayout} インスタンスや、</PH> <code>"wrap_content"</code> と <code>"match_parent"…
126 <li><code>res/layout/main.xml</code>、シングルペイン(デフォルト)レイアウト:
130 <li><code>res/layout-large/main.xml</code>、2 ペイン レイアウト:
136 <p>2 番目のレイアウトのディレクトリ名の <code>large</code> 修飾子に注目してください。このレイアウトは、ラージ(7 インチ以上のタブレットなど)と分類された画面のデバイスで選…
143 …イアウトをシングルペイン レイアウト用と 2 ペイン レイアウト用としてそのまま利用できます。ただし、<code>large</code> サイズ修飾子の代わりに、<code>sw600dp</c…
146 <li><code>res/layout/main.xml</code>、シングルペイン(デフォルト)レイアウト:
150 <li><code>res/layout-sw600dp/main.xml</code>、2 ペイン レイアウト:
[all …]
Dscreendensities.jd46 …め、サイズを指定する場合は、常に <code>dp</code> 単位や <code>sp</code> 単位を使用します。<code>dp</code> とは、1 ピクセルの物理サイズが 160…
48 <p>たとえば、2 つのビューの間にスペースを挿入する場合は、<code>px</code> ではなくて <code>dp</code> を使用します:</p>
57 <p>テキスト サイズを指定する場合は、常に <code>sp</code> を使用します:</p>
73 <li><code>xhdpi</code>: 2.0
74 <li><code>hdpi</code>: 1.5
75 <li><code>mdpi</code>: 1.0(基準)
76 <li><code>ldpi</code>: 0.75
79code>xhdpi</code> デバイス用)を生成する場合、同じリソースを 150&times;150 画像(<code>hdpi</code> デバイス用)、100&times;100 画像…
81 <p>さらに、生成した画像を <code>res/</code> 下の適切なサブディレクトリに配置することで、アプリが動作するデバイスの画面密度に基づいて、自動的に適切な画像が表示されます:</p>
96 <p>また、<code>&#64;drawable/awesomeimage</code> を参照する場合は常に画面の dpi に基づいて、適切なビットマップが選択されます。</p>
/frameworks/base/docs/html/tools/help/
Dandroid.jd6 <p>{@code android} is an important development tool that lets you:</p>
19 </ul>If you are using Eclipse, the <code>android</code> tool's features are integrated
23 and may be out of date. For the most current list of options, execute <code>android
24 --help</code>.</p>
35 <dt><code>-s</code></dt>
39 <dt><code>-h</code></dt>
43 <dt><code>-v</code></dt>
62 <td><code>avd</code></td>
72 <td><code>sdk</code></td>
82 <td rowspan="6"><code>create avd</code></td>
[all …]
Demulator.jd103 <td>Toggle code profiling</td>
104 <td>F9 (only with <code>-trace</code> startup option)</td>
137 Here's the command-line syntax of the options available to the {@code emulator} program:</p>
152 <td><code>-avd &lt;avd_name&gt;</code> or <br>
153 <code>@&lt;avd_name&gt;</code></td>
161 <td><code>-cache&nbsp;&lt;filepath&gt;</code></td>
165 <p>For more information on disk images, use <code>-help-disk-images</code>.</p>
168 <td><code>-data&nbsp;&lt;filepath&gt;</code></td>
169 <td>Use {@code &lt;filepath&gt;} as the working user-data disk image. </td>
171 If <code>-data</code> is not used, the emulator looks for a file named {@code userdata-qemu.img}
[all …]
Dlogcat.jd8 …circular buffers, which then can be viewed and filtered by the <code>logcat</code> command. You ca…
9 <code>logcat</code> from an ADB shell to view the log messages.</p>
14 …<p>For more information on accessing <code>logcat</code> from DDMS, instead of the command line, s…
22 <p>You can run <code>logcat</code> as an adb command or directly in a shell prompt
24 <code>platform-tools/</code> directory and execute:</p>
36 <p>The following table describes the command line options of <code>logcat</code>.</p>
46 <td><code>-b&nbsp;&lt;buffer&gt;</code></td>
48 <td>Loads an alternate log buffer for viewing, such as <code>events</code> or
49 <code>radio</code>. The <code>main</code> buffer is used by default. See <a href=
54 <td><code>-c</code></td>
[all …]
Dlint.jd17 <p>The Android {@code lint} tool is a static code analysis tool that checks your Android project so…
18 <p>For more information on running {@code lint}, see <a href="{@docRoot}tools/debugging/improving-w…
24 For example, you can issue the following command to scan the Java and XML files under the {@code my…
27code lint} to check for a specific issue. For example, you can run the following command to scan t…
30code lint} detects. For example, you can run the following command to scan the {@code myproject} d…
35 <p>Table 1 describes the command-line options for {@code lint}.</p>
48 <td><nobr><code>--disable &lt;list&gt;</code></nobr></td>
50 <td>The <code>&lt;list&gt;</code> must be a comma-separated list of {@code lint} issue IDs or categ…
54 <td><nobr><code>--enable &lt;list&gt;</code></nobr></td>
55 <td>Check for all the default issues supported by {@code lint} as well as the specifically enabled …
[all …]
/frameworks/base/docs/html-intl/intl/ru/training/multiscreen/
Dscreensizes.jd54code>"wrap_content"</code> и <code>"match_parent"</code>. Если используется <code>"wrap_content"</
56 <p>Если указать параметры <code>"wrap_content"</code> и <code>"match_parent"</code> вместо строго з…
60 …размеры компонентов заданы с помощью параметров <code>"wrap_content"</code> и <code>"match_parent"…
70 … android.widget.LinearLayout}</PH> и параметров <code>"wrap_content"</code> и <code>"match_parent"…
126 <li><code>res/layout/main.xml</code>, однопанельный макет (по умолчанию):
130 <li><code>res/layout-large/main.xml</code>, двухпанельный макет:
136 … что во втором случае в названии каталога использован квалификатор <code>large</code>. Этот макет …
143 …предыдущего раздела, но вместо квалификатора размера <code>large</code> укажите <code>sw600dp</cod…
146 <li><code>res/layout/main.xml</code>, однопанельный макет (по умолчанию):
150 <li><code>res/layout-sw600dp/main.xml</code>, двухпанельный макет:
[all …]
Dscreendensities.jd46code>dp</code> или <code>sp</code>. <code>dp</code>&nbsp;– это не зависящий от разрешения пиксель,…
48 …е между двумя представлениями, рекомендуется использовать <code>dp</code>, а не <code>px</code>:</…
57 <p>Для определения размера шрифта всегда используйте <code>sp</code>:</p>
73 <li><code>xhdpi</code>: 2,0
74 <li><code>hdpi</code>: 1,5
75 <li><code>mdpi</code>: 1,0 (стандартный размер)
76 <li><code>ldpi</code>: 0,75
79code>xhdpi</code> имеет размер 200&nbsp;x&nbsp;200, на устройствах <code>hdpi</code> должно иметь …
81 <p>Поместите файлы изображений в соответствующие подкаталоги в папке <code>res/</code>, и система а…
96 <p>При каждом обращении к файлу <code>&#64;drawable/awesomeimage</code> система будет выбирать изоб…
/frameworks/base/docs/html/tools/testing/
Dtesting_otheride.jd76 You use the <code>android</code> tool to create test projects.
77 You also use <code>android</code> to convert existing test code into an Android test project,
78 or to add the <code>test</code> Ant target to an existing Android test project.
80 Updating a test project</a>. The <code>test</code> target is described in
85 To create a test project with the <code>android</code> tool, enter:
100 <td><code>-m, --main</code></td>
106 For example, if the application under test is in <code>source/HelloAndroid</code>, and
107 you want to create the test project in <code>source/HelloAndroidTest</code>, then the
108 value of <code>--main</code> should be <code>../HelloAndroid</code>.
117 <td><code>-n, --name</code></td>
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/tools/publishing/
Dpreparing.jd34 …droid SDK 工具完成。测试任务就是做最终检查,以确保您的应用能在实际环境下正常运行。准备好要发布的应用后,您将获得一个已签名的 <code>.apk</code> 文件。您可以直接将该文件…
47 … 设备上安装和运行。发布版应用包与调试 <code>.apk</code> 文件中包含的组件相同(经过编译的源代码、资源、清单文件等),使用的构建工具也相同。不过,与调试 <code>.apk</
72code.google.com/android/add-ons/google-apis/reference/com/google/android/maps/MapView.html">MapVie…
98code><a href="{@docRoot}reference/android/util/Log.html">Log</a></code> 方法的调用。要停用调试功能,您可以从清单文件的 <c…
100code><a href="{@docRoot}reference/android/os/Debug.html">Debug</a></code> 跟踪调用,例如 <code><a href="{…
102code><a href="{@docRoot}reference/android/webkit/WebView.html">WebView</a></code> 展示付费内容或使用 JavaSc…
109code>jni/</code>、<code>lib/</code> 和 <code>src/</code> 目录的内容。<code>jni/</code> 目录应只包含与 <a href="{@…
110 …<li>检查项目中是否包含应用不需要的专用或专有数据文件,如果有请将其移除。例如,在项目的 <code>res/</code> 目录中查找是否包含旧的图形文件、布局文件和值文件,如果您不再使用这些…
111 <li>检查 <code>lib/</code> 目录中是否包含测试库;如果您的应用不再使用这些库,请将其移除。</li>
112 … <li>查看 <code>assets/</code> 目录和 <code>res/raw/</code> 目录的内容,查找其中是否包含需在应用发布前更新或移除的原始资源文件和静态文件。</li>
[all …]
/frameworks/base/docs/html/google/play/billing/v2/
Dbilling_reference.jd50 <code>response_code</code> extras in the <code>com.android.vending.billing.RESPONSE_CODE</code>
63 <td><code>RESULT_OK</code></td>
65 <td>Indicates that the request was sent to the server successfully. When this code is returned in
66 response to a <code>CHECK_BILLING_SUPPORTED</code> request, indicates that billing is
70 <td><code>RESULT_USER_CANCELED</code></td>
76 <td><code>RESULT_SERVICE_UNAVAILABLE</code></td>
81 <td><code>RESULT_BILLING_UNAVAILABLE</code></td>
83 <td>Indicates that In-app Billing is not available because the <code>API_VERSION</code> that you
88 <td><code>RESULT_ITEM_UNAVAILABLE</code></td>
91 list. This can happen if the product ID is misspelled in your <code>REQUEST_PURCHASE</code>
[all …]
/frameworks/base/docs/html-intl/intl/zh-cn/google/play/billing/
Dapi.jd63 <li>您的应用向 Google Play 发送 <code>isBillingSupported</code> 请求,以确定您当前使用的应用内结算 API 目标版本是否受支持。</li>
64 … Play 进行查询,确定该用户拥有哪些商品。要查询用户的应用内购买,请发送 <code>getPurchases</code> 请求。如果该请求成功,Google Play 会返回一个 <cod…
65 …商品的详细信息,应用可以发送 <code>getSkuDetails</code> 请求。您必须在该查询请求中指定商品 ID 列表。如果该请求成功,Google Play 会返回一个包含产品详情(…
67 …<li>如果该用户还未拥有应用内商品,您可以提示购买。为了发起购买请求,您的应用会发送 <code>getBuyIntent</code> 请求,指定要购买商品的商品 ID 以及其他参数。当您在开…
69 <li>Google Play 返回的 <code>Bundle</code> 中包含 <code>PendingIntent</code>,您的应用可用它来启动购买结帐界面。</li>
70 <li>您的应用通过调用 <code>startIntentSenderForResult</code> 方法来启动 PendingIntent。</li>
71code>onActivityResult</code> 方法发送响应 <code>Intent</code>。<code>onActivityResult</code> 的结果代码中有一个代码将…
87 …ogle Play 发送 <code>getPurchases</code> 调用。您的应用可以通过发送 <code>consumePurchase</code> 调用提出消耗请求。在请求参数中,…
102 <li>调用 <code>getBuyIntent</code> 启动购买流程。</li>
103 <li>从 Google Play 接收指示购买是否成功完成的响应 <code>Bundle</code>。</li>
[all …]
/frameworks/base/docs/html/tools/sdk/ndk/
Dindex.jd357 of your app using native-code languages such as C and C++. For certain types of apps,
358 this can be helpful so you can reuse existing code libraries written in these
363 against its drawbacks. Notably, using native code on Android
370 whether or not you should develop in native code, think about your requirements and see if the
399 <code>NDK_TOOLCHAIN_VERSION=4.6</code> to ndk-build, or
400 add <code>--toolchain=arm-linux-androideabi-4.6</code> when executing
401 <code>make-standalone-toolchain.sh</code> on the command line. GCC 4.9 remains the
404 <li>Stopped all x86[_64] toolchains from adding <code>-mstackrealign</code> by default. The
406 enforce this rule. A user writing assembly code must make sure to preserve stack
412 <a href="https://code.google.com/p/address-sanitizer/wiki/Android">Address
[all …]
/frameworks/base/docs/html-intl/intl/ja/guide/publishing/
Dversioning.jd45 <p>Android システムが確認を行うのは、アプリケーションによってマニフェストの <code>minSdkVersion</code> 属性に指定されたシステム バージョン互換性です。<em>…
51 <li><code>android:versionCode</code> - アプリケーション コードのバージョンを他のバージョンと相対的に示す整数値。
55 …を単調増加させます。これは、<code>android:versionCode</code> の値は、ユーザーに表示されるアプリケーション リリース バージョンと類似している必要性はないことを意味…
57 <li><code>android:versionName</code> - アプリケーション コードのリリース バージョンを表す文字列値で、ユーザーに表示される値です。
60 <p><code>android:versionCode</code> の場合と同様に、システムではこの値をアプリケーションでユーザーに表示する以外の目的で内部的に利用することはありません。公開サー…
64 <p>これらのバージョン属性の両方をマニフェスト ファイルの <code>&lt;manifest&gt;</code> 要素で定義します。 </p>
66 <p>ここに、<code>&lt;manifest&gt;</code> 要素の <code>android:versionCode</code> と <code>android:versionNa…
80 <p>この例では、<code>android:versionCode</code> 値は現在の .apk がこのアプリケーション コードの 2 番目のリリースを含んでいることを表し、これは <cod…
92 <li><code>android:minSdkVersion</code> - Android プラットフォームのコード バージョンに対応する整数値。
93 <p>アプリケーションのインストールを準備する際に、システムはこの属性の値を確認して、システム バージョンと比較します。<code>android:minSdkVersion</code> 値がシス…
[all …]
/frameworks/base/docs/html/training/notepad/
Dnotepad-ex3.jd26 <p>Import <code>Notepadv3</code> into Eclipse. If you see an error about
27 <code>AndroidManifest.xml,</code> or some problems related to an Android zip
39 <li>Remove the code in <code>NoteEdit</code> that parses the title and body
41 <p>Instead, we are going to use the <code>DBHelper</code> class
43 NoteEdit Activity is a <code>mRowId</code> (but only if we are editing, if creating we pass
50 the <code>extras</code> Bundle, which we were using to set the title
64 <p>Create a class field for a <code>NotesDbAdapter</code> at the top of the NoteEdit class:</p>
66 <p>Also add an instance of <code>NotesDbAdapter</code> in the
67 <code>onCreate()</code> method (right below the <code>super.onCreate()</code> call):</p>
74 <p>In <code>NoteEdit</code>, we need to check the <var>savedInstanceState</var> for the
[all …]
Dnotepad-ex1.jd11 <li><em>The basics of <code>ListActivities</code> and creating and handling menu
33 <p>Open up the <code>Notepadv1</code> project in Eclipse.</p>
35 <p><code>Notepadv1</code> is a project that is provided as a starting point. It
47 … Click <strong>Browse</strong> and navigate to where you copied the <code>NotepadCodeLab</code>
49 and select <code>Notepadv1</code>.</li>
56 Click <strong>Finish</strong>. The <code>Notepadv1</code> project should open and be
60 <p>If you see an error about <code>AndroidManifest.xml</code>, or some
80 The NotePad sample in the <code>samples/</code> folder of the SDK also has an example of how
85 <p>Take a look at the <code>NotesDbAdapter</code> class &mdash; this class is provided to
91 <p>Our database will have the name <code>data</code>, and have a single table called
[all …]
/frameworks/base/docs/html/training/articles/
Dperf-jni.jd24 <li><a href="#faq_ULE">FAQ: Why do I get <code>UnsatisfiedLinkError</code></a></li>
25 <li><a href="#faq_FindClass">FAQ: Why didn't <code>FindClass</code> find my class?</a></li>
26 <li><a href="#faq_sharing">FAQ: How do I share raw data with native code?</a></li>
32 <p>JNI is the Java Native Interface. It defines a way for managed code
34 code (written in C/C++). It's vendor-neutral, has support for loading code from
58 If a piece of code has no other way to get its JNIEnv, you should share
59 the JavaVM, and use <code>GetEnv</code> to discover the thread's JNIEnv. (Assuming it has one; see …
62 declarations. The <code>"jni.h"</code> include file provides different typedefs
65 header file requires <code>#ifdef __cplusplus</code>, you may have to do some extra work if anythin…
72 started from managed code (using <code>Thread.start</code>),
[all …]

12345678910>>...51