• R/O
  • HTTP
  • SSH
  • HTTPS

提交

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

development


Commit MetaInfo

修訂102041a8bc4ebca69c20f5d281a96a904c52d4c8 (tree)
時間2011-06-17 06:38:03
作者Dianne Hackborn <hackbod@goog...>
CommiterDianne Hackborn

Log Message

SDK only: add documentation tags.

Also fix up the new support API demo documentation.

Change-Id: I7a6945ffafa6a93cd394d5ce5729d6f9dfc0a183

Change Summary

差異

--- a/samples/ApiDemos/src/com/example/android/apis/app/FragmentTabs.java
+++ b/samples/ApiDemos/src/com/example/android/apis/app/FragmentTabs.java
@@ -17,6 +17,7 @@ package com.example.android.apis.app;
1717
1818 import com.example.android.apis.R;
1919
20+//BEGIN_INCLUDE(complete)
2021 import android.app.ActionBar;
2122 import android.app.ActionBar.Tab;
2223 import android.app.Activity;
@@ -114,3 +115,4 @@ public class FragmentTabs extends Activity {
114115 }
115116 }
116117 }
118+//END_INCLUDE(complete)
--- a/samples/Support13Demos/_index.html
+++ b/samples/Support13Demos/_index.html
@@ -1,8 +1,8 @@
1-<p>The Support v4 Demos application contains a variety of small sample
2-code showing how to use key features of the support library.
1+<p>The Support v13 Demos application contains a variety of small sample
2+code showing how to use key features of the Android API 13+ Support Library.
33 This library contains code that you can
44 build in to your application to access new features and common
5-utilities while being able to run down to version 1.6 (API 4)
5+utilities while being able to run down to version 3.2 (API 13)
66 of the platform.
77 </p>
88
--- a/samples/Support4Demos/_index.html
+++ b/samples/Support4Demos/_index.html
@@ -1,5 +1,5 @@
11 <p>The Support v4 Demos application contains a variety of small sample
2-code showing how to use key features of the support library.
2+code showing how to use key features of the Android API 4+ Support Library.
33 This library contains code that you can
44 build in to your application to access new features and common
55 utilities while being able to run down to version 1.6 (API 4)
--- a/samples/Support4Demos/res/layout/fragment_tabs.xml
+++ b/samples/Support4Demos/res/layout/fragment_tabs.xml
@@ -18,6 +18,7 @@
1818 */
1919 -->
2020
21+<!-- BEGIN_INCLUDE(complete) -->
2122 <TabHost
2223 xmlns:android="http://schemas.android.com/apk/res/android"
2324 android:id="@android:id/tabhost"
@@ -50,3 +51,4 @@
5051
5152 </LinearLayout>
5253 </TabHost>
54+<!-- END_INCLUDE(complete) -->
--- a/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentTabs.java
+++ b/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentTabs.java
@@ -15,6 +15,7 @@
1515 */
1616 package com.example.android.supportv4.app;
1717
18+//BEGIN_INCLUDE(complete)
1819 import java.util.HashMap;
1920
2021 import com.example.android.supportv4.R;
@@ -167,3 +168,4 @@ public class FragmentTabs extends FragmentActivity {
167168 }
168169 }
169170 }
171+//END_INCLUDE(complete)