SDK only: add markup for use in documentation.

Change-Id: Ia379c178a41db146a47a494b5c24e5f77d65ada7
diff --git a/samples/Support13Demos/res/layout/fragment_pager.xml b/samples/Support13Demos/res/layout/fragment_pager.xml
index 46c8cbe..3fe844d 100644
--- a/samples/Support13Demos/res/layout/fragment_pager.xml
+++ b/samples/Support13Demos/res/layout/fragment_pager.xml
@@ -16,6 +16,7 @@
 
 <!-- Top-level content view for the simple fragment sample. -->
 
+<!-- BEGIN_INCLUDE(complete) -->
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:orientation="vertical" android:padding="4dip"
         android:gravity="center_horizontal"
@@ -42,3 +43,4 @@
         </Button>
     </LinearLayout>
 </LinearLayout>
+<!-- END_INCLUDE(complete) -->
diff --git a/samples/Support13Demos/res/layout/fragment_pager_list.xml b/samples/Support13Demos/res/layout/fragment_pager_list.xml
index bbe7b1d..189cfff 100644
--- a/samples/Support13Demos/res/layout/fragment_pager_list.xml
+++ b/samples/Support13Demos/res/layout/fragment_pager_list.xml
@@ -14,6 +14,7 @@
      limitations under the License.
 -->
 
+<!-- BEGIN_INCLUDE(complete) -->
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="match_parent"
@@ -50,3 +51,4 @@
     </FrameLayout>
 
 </LinearLayout>
+<!-- END_INCLUDE(complete) -->
diff --git a/samples/Support13Demos/src/com/example/android/supportv13/app/ActionBarTabsPager.java b/samples/Support13Demos/src/com/example/android/supportv13/app/ActionBarTabsPager.java
index 433f7e9..301a2f8 100644
--- a/samples/Support13Demos/src/com/example/android/supportv13/app/ActionBarTabsPager.java
+++ b/samples/Support13Demos/src/com/example/android/supportv13/app/ActionBarTabsPager.java
@@ -33,6 +33,7 @@
  * This demonstrates the use of action bar tabs and how they interact
  * with other action bar features.
  */
+//BEGIN_INCLUDE(complete)
 public class ActionBarTabsPager extends Activity {
     ViewPager mViewPager;
     TabsAdapter mTabsAdapter;
@@ -157,3 +158,4 @@
         }
     }
 }
+//END_INCLUDE(complete)
diff --git a/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentPagerSupport.java b/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentPagerSupport.java
index ae2f481..04532b8 100644
--- a/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentPagerSupport.java
+++ b/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentPagerSupport.java
@@ -37,6 +37,7 @@
 import android.widget.ListView;
 import android.widget.TextView;
 
+//BEGIN_INCLUDE(complete)
 public class FragmentPagerSupport extends Activity {
     static final int NUM_ITEMS = 10;
 
@@ -138,3 +139,4 @@
         }
     }
 }
+//END_INCLUDE(complete)
diff --git a/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentStatePagerSupport.java b/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentStatePagerSupport.java
index 4e6ebda..e60c268 100644
--- a/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentStatePagerSupport.java
+++ b/samples/Support13Demos/src/com/example/android/supportv13/app/FragmentStatePagerSupport.java
@@ -37,6 +37,7 @@
 import android.widget.ListView;
 import android.widget.TextView;
 
+//BEGIN_INCLUDE(complete)
 public class FragmentStatePagerSupport extends Activity {
     static final int NUM_ITEMS = 10;
 
@@ -138,3 +139,4 @@
         }
     }
 }
+//END_INCLUDE(complete)
diff --git a/samples/Support4Demos/res/layout/fragment_pager.xml b/samples/Support4Demos/res/layout/fragment_pager.xml
index 46c8cbe..3fe844d 100644
--- a/samples/Support4Demos/res/layout/fragment_pager.xml
+++ b/samples/Support4Demos/res/layout/fragment_pager.xml
@@ -16,6 +16,7 @@
 
 <!-- Top-level content view for the simple fragment sample. -->
 
+<!-- BEGIN_INCLUDE(complete) -->
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:orientation="vertical" android:padding="4dip"
         android:gravity="center_horizontal"
@@ -42,3 +43,4 @@
         </Button>
     </LinearLayout>
 </LinearLayout>
+<!-- END_INCLUDE(complete) -->
diff --git a/samples/Support4Demos/res/layout/fragment_pager_list.xml b/samples/Support4Demos/res/layout/fragment_pager_list.xml
index bbe7b1d..189cfff 100644
--- a/samples/Support4Demos/res/layout/fragment_pager_list.xml
+++ b/samples/Support4Demos/res/layout/fragment_pager_list.xml
@@ -14,6 +14,7 @@
      limitations under the License.
 -->
 
+<!-- BEGIN_INCLUDE(complete) -->
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:orientation="vertical"
     android:layout_width="match_parent"
@@ -50,3 +51,4 @@
     </FrameLayout>
 
 </LinearLayout>
+<!-- END_INCLUDE(complete) -->
diff --git a/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.java b/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.java
index c10890b..f413744 100644
--- a/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.java
+++ b/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentPagerSupport.java
@@ -36,6 +36,7 @@
 import android.widget.ListView;
 import android.widget.TextView;
 
+//BEGIN_INCLUDE(complete)
 public class FragmentPagerSupport extends FragmentActivity {
     static final int NUM_ITEMS = 10;
 
@@ -137,3 +138,4 @@
         }
     }
 }
+//END_INCLUDE(complete)
diff --git a/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentStatePagerSupport.java b/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentStatePagerSupport.java
index 8a52896..2939b0e 100644
--- a/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentStatePagerSupport.java
+++ b/samples/Support4Demos/src/com/example/android/supportv4/app/FragmentStatePagerSupport.java
@@ -37,6 +37,7 @@
 import com.example.android.supportv4.Cheeses;
 import com.example.android.supportv4.R;
 
+//BEGIN_INCLUDE(complete)
 public class FragmentStatePagerSupport extends FragmentActivity {
     static final int NUM_ITEMS = 10;
 
@@ -138,3 +139,4 @@
         }
     }
 }
+//END_INCLUDE(complete)