ScrollView を使ってみた

ScrollView を使うには
java.lang.Object
  ↳ android.view.View
    ↳ android.view.ViewGroup
      ↳ android.widget.FrameLayout
        ↳ android.widget.ScrollView
を使います

というわけで、ScrollView をいじってみた

サンプルプログラム
  1. import android.app.Activity;  
  2. import android.os.Bundle;  
  3. import android.widget.Button;  
  4. import android.widget.LinearLayout;  
  5. import android.widget.ScrollView;  
  6.   
  7. public class ScrollViewTest extends Activity {  
  8.   ScrollView scrollView;  
  9.   LinearLayout linearLayout;  
  10.   
  11.   @Override  
  12.   public void onCreate(Bundle savedInstanceState) {  
  13.     super.onCreate(savedInstanceState);  
  14.     scrollView = new ScrollView(this);  
  15.     linearLayout = new LinearLayout(this);  
  16.     linearLayout.setOrientation(LinearLayout.VERTICAL);  
  17.     
  18.     for (int i = 0; i < 12; i++) {  
  19.       Button button = new Button(this);  
  20.       button.setText("Button" + (i+1));  
  21.       linearLayout.addView(button);  
  22.     }  
  23.   
  24.     // ScrollView に View を追加  
  25.     scrollView.addView(linearLayout);  
  26.   
  27.     setContentView(scrollView);  
  28.   }  
  29. }  

ScrollView は1つしか View を設定できないので LinearLayout などにまとめる必要があります XMLでまとめて設定することもできます XMLリソース
  1. <ScrollView  
  2.   android:id="@+id/ScrollView"  
  3.   android:layout_height="fill_parent"  
  4.   android:layout_width="fill_parent">  
  5.   <LinearLayout   
  6.     android:id="@+id/LinearLayout"  
  7.     android:orientation="vertical"  
  8.     android:layout_height="fill_parent"  
  9.     android:layout_width="fill_parent">  
  10.     <!-- 追加したいView -->  
  11.     <Button .../>  
  12.         ・  
  13.         ・  
  14.         ・  
  15.   </LinearLayout>  
  16. </ScrollView>  

プログラムを実行すると...



こんな感じ!

右にスクロールバーが表示されて、上下に続きがあると少し暗くなっています

参考サイト
http://developer.android.com/intl/ja/reference/android/widget/ScrollView.html

0 件のコメント:

コメントを投稿