Home | History | Annotate | Download | only in view
      1 /*
      2  * Copyright (C) 2007 The Android Open Source Project
      3  *
      4  * Licensed under the Apache License, Version 2.0 (the "License");
      5  * you may not use this file except in compliance with the License.
      6  * You may obtain a copy of the License at
      7  *
      8  *      http://www.apache.org/licenses/LICENSE-2.0
      9  *
     10  * Unless required by applicable law or agreed to in writing, software
     11  * distributed under the License is distributed on an "AS IS" BASIS,
     12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13  * See the License for the specific language governing permissions and
     14  * limitations under the License.
     15  */
     16 
     17 package com.example.android.apis.view;
     18 
     19 import com.example.android.apis.R;
     20 
     21 import android.app.Activity;
     22 import android.os.Bundle;
     23 import android.widget.LinearLayout;
     24 import android.widget.TextView;
     25 import android.widget.Button;
     26 
     27 /**
     28  * Demonstrates wrapping a layout in a ScrollView.
     29  *
     30  */
     31 public class ScrollView2 extends Activity {
     32     @Override
     33     protected void onCreate(Bundle savedInstanceState) {
     34         super.onCreate(savedInstanceState);
     35         setContentView(R.layout.scroll_view_2);
     36 
     37         LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
     38         for (int i = 2; i < 64; i++) {
     39             TextView textView = new TextView(this);
     40             textView.setText("Text View " + i);
     41             LinearLayout.LayoutParams p = new LinearLayout.LayoutParams(
     42                     LinearLayout.LayoutParams.MATCH_PARENT,
     43                     LinearLayout.LayoutParams.WRAP_CONTENT
     44             );
     45             layout.addView(textView, p);
     46 
     47             Button buttonView = new Button(this);
     48             buttonView.setText("Button " + i);
     49             layout.addView(buttonView, p);
     50         }
     51     }
     52 }
     53