Roll android_tools support library to 25.1.0
[android_tools.git] / sdk / sources / android-23 / android / databinding / testlibrary / TestLibraryMainActivity.java
blobed2d268f0bb6b208b1b1ef489a665e0e5e048e3e
1 /*
2 * Copyright (C) 2015 The Android Open Source Project
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package android.databinding.testlibrary;
19 import android.app.Activity;
20 import android.os.Bundle;
21 import android.view.Menu;
22 import android.view.MenuItem;
23 import android.databinding.testlibrary.R;
24 import android.databinding.testlibrary.databinding.ActivityTestLibraryMainBinding;
25 public class TestLibraryMainActivity extends Activity {
26 @Override
27 protected void onCreate(Bundle savedInstanceState) {
28 super.onCreate(savedInstanceState);
29 ActivityTestLibraryMainBinding binder = ActivityTestLibraryMainBinding.inflate(
30 getLayoutInflater());
31 setContentView(binder.getRoot());
36 @Override
37 public boolean onCreateOptionsMenu(Menu menu) {
38 // Inflate the menu; this adds items to the action bar if it is present.
39 getMenuInflater().inflate(R.menu.menu_test_library_main, menu);
40 return true;
43 @Override
44 public boolean onOptionsItemSelected(MenuItem item) {
45 // Handle action bar item clicks here. The action bar will
46 // automatically handle clicks on the Home/Up button, so long
47 // as you specify a parent activity in AndroidManifest.xml.
48 int id = item.getItemId();
50 //noinspection SimplifiableIfStatement
51 if (id == R.id.action_settings) {
52 return true;
55 return super.onOptionsItemSelected(item);