Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發實例 >> 仿照Launcher的Workspace實現左右滑動切換(下)

仿照Launcher的Workspace實現左右滑動切換(下)

編輯:Android開發實例

試用的Activity文件ScrollViewDemoActivity.java

 

  1. package com.teleca.robin;  
  2.  
  3. import android.app.Activity;  
  4.  
  5. import android.os.Bundle;  
  6.  
  7. import android.os.Debug;  
  8.  
  9. public class ScrollViewDemoActivity extends Activity {  
  10.  
  11. /** Called when the activity is first created. */ 
  12.  
  13. @Override 
  14.  
  15. public void onCreate(Bundle savedInstanceState) {  
  16.  
  17. super.onCreate(savedInstanceState);  
  18.  
  19. setContentView(R.layout.main_scroll);  
  20.  
  21. }  
  22.  
  23. }  
  24.  
測試程序用的布局文件main_scroll.xml

 

  1. <?xml version="1.0" encoding="utf-8"?> 
  2.  
  3. <com.teleca.robin.ScrollLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  4.  
  5.     android:id="@+id/ScrollLayoutTest" 
  6.  
  7.     android:layout_width="fill_parent" 
  8.  
  9.     android:layout_height="fill_parent" > 
  10.  
  11.    <LinearLayout 
  12.  
  13.         xmlns:android="http://schemas.android.com/apk/res/android" 
  14.  
  15.         android:layout_width="fill_parent" 
  16.  
  17.         android:layout_height="fill_parent" 
  18.  
  19.         android:orientation="vertical"   
  20.  
  21.         android:background="@drawable/girl"> 
  22.  
  23.  
  24.  
  25.  
  26.         <TextView 
  27.  
  28.             android:id="@+id/textView1" 
  29.  
  30.             android:layout_width="fill_parent" 
  31.  
  32.             android:layout_height="wrap_content" 
  33.  
  34.             android:text="第一頁" 
  35.  
  36.             android:textAppearance="?android:attr/textAppearanceLarge" > 
  37.  
  38.         </TextView> 
  39.  
  40.     </LinearLayout> 
  41.  
  42.  
  43.  
  44.  
  45.     <LinearLayout 
  46.  
  47.         xmlns:android="http://schemas.android.com/apk/res/android" 
  48.  
  49.         android:layout_width="fill_parent" 
  50.  
  51.         android:layout_height="fill_parent" 
  52.  
  53.         android:orientation="vertical"   
  54.  
  55.          android:background="@drawable/girl2"> 
  56.  
  57.  
  58.  
  59.  
  60.         <TextView 
  61.  
  62.             android:id="@+id/textView1" 
  63.  
  64.             android:layout_width="fill_parent" 
  65.  
  66.             android:layout_height="wrap_content" 
  67.  
  68.             android:text="第二頁" 
  69.  
  70.             android:textAppearance="?android:attr/textAppearanceLarge" > 
  71.  
  72.         </TextView> 
  73.  
  74.     </LinearLayout> 
  75.  
  76.  
  77.  
  78.  
  79.     <LinearLayout 
  80.  
  81.         xmlns:android="http://schemas.android.com/apk/res/android" 
  82.  
  83.         android:layout_width="fill_parent" 
  84.  
  85.         android:layout_height="fill_parent" 
  86.  
  87.         android:orientation="vertical"   
  88.  
  89.          android:background="@drawable/girl3" 
  90.  
  91.          > 
  92.  
  93.  
  94.  
  95.  
  96.         <TextView 
  97.  
  98.             android:id="@+id/textView1" 
  99.  
  100.             android:layout_width="fill_parent" 
  101.  
  102.             android:layout_height="wrap_content" 
  103.  
  104.             android:text="第三頁" 
  105.  
  106.             android:textAppearance="?android:attr/textAppearanceLarge" > 
  107.  
  108.         </TextView> 
  109.  
  110.     </LinearLayout> 
  111.  
  112.  
  113.  
  114.  
  115. </com.teleca.robin.ScrollLayout> 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved