• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2012 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.appnavigation.app;
18 
19 import com.example.android.appnavigation.R;
20 
21 import android.app.Activity;
22 import android.content.Intent;
23 import android.os.Bundle;
24 import android.widget.TextView;
25 
26 public class ContentViewActivity extends Activity {
27     public static final String EXTRA_TEXT = "com.example.android.appnavigation.EXTRA_TEXT";
28 
29     @Override
onCreate(Bundle savedInstanceState)30     protected void onCreate(Bundle savedInstanceState) {
31         super.onCreate(savedInstanceState);
32         setContentView(R.layout.content_view);
33 
34         Intent intent = getIntent();
35         if (Intent.ACTION_VIEW.equals(intent.getAction())) {
36             TextView tv = (TextView) findViewById(R.id.status_text);
37             tv.setText("Viewing content from ACTION_VIEW");
38         } else if (intent.hasExtra(EXTRA_TEXT)) {
39             TextView tv = (TextView) findViewById(R.id.status_text);
40             tv.setText(intent.getStringExtra(EXTRA_TEXT));
41         }
42     }
43 }
44