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
17package com.example.android.apis.view;
18
19import com.example.android.apis.R;
20
21import android.app.Activity;
22import android.os.Bundle;
23import android.webkit.WebView;
24import android.widget.ListView;
25import android.widget.ArrayAdapter;
26
27/**
28 * Demonstrates the use of non-focusable views.
29 */
30public class Focus1 extends Activity {
31
32    @Override
33    protected void onCreate(Bundle savedInstanceState) {
34        super.onCreate(savedInstanceState);
35        setContentView(R.layout.focus_1);
36
37        WebView webView = (WebView) findViewById(R.id.rssWebView);
38        webView.loadData(
39                        "<html><body>Can I focus?<br /><a href=\"#\">No I cannot!</a>.</body></html>",
40                        "text/html", null);
41
42        ListView listView = (ListView) findViewById(R.id.rssListView);
43        listView.setAdapter(new ArrayAdapter<String>(this,
44                android.R.layout.simple_list_item_1,
45                new String[] {"Ars Technica", "Slashdot", "GameKult"}));
46    }
47}
48