1/*
2 * Copyright (C) 2015 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 android.databinding.testlibrary;
18
19import android.app.Activity;
20import android.os.Bundle;
21import android.view.Menu;
22import android.view.MenuItem;
23import android.databinding.testlibrary.R;
24import android.databinding.testlibrary.databinding.ActivityTestLibraryMainBinding;
25public 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());
32
33    }
34
35
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;
41    }
42
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();
49
50        //noinspection SimplifiableIfStatement
51        if (id == R.id.action_settings) {
52            return true;
53        }
54
55        return super.onOptionsItemSelected(item);
56    }
57}
58