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 /** 29 * Demonstrates wrapping a layout in a ScrollView. 30 * 31 */ 32 public class ScrollView2 extends Activity { 33 @Override onCreate(Bundle savedInstanceState)34 protected void onCreate(Bundle savedInstanceState) { 35 super.onCreate(savedInstanceState); 36 setContentView(R.layout.scroll_view_2); 37 38 LinearLayout layout = (LinearLayout) findViewById(R.id.layout); 39 for (int i = 2; i < 64; i++) { 40 TextView textView = new TextView(this); 41 textView.setText("Text View " + i); 42 LinearLayout.LayoutParams p = new LinearLayout.LayoutParams( 43 LinearLayout.LayoutParams.MATCH_PARENT, 44 LinearLayout.LayoutParams.WRAP_CONTENT 45 ); 46 layout.addView(textView, p); 47 48 Button buttonView = new Button(this); 49 buttonView.setText("Button " + i); 50 layout.addView(buttonView, p); 51 } 52 } 53 } 54