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.multimoduletestapp;
18
19import android.databinding.multimoduletestapp.databinding.ActivityMainBinding;
20import android.app.Activity;
21import android.os.Bundle;
22import android.view.Menu;
23import android.view.MenuItem;
24import android.view.ViewGroup;
25
26public class MainActivity extends Activity {
27    ActivityMainBinding mBinder;
28    @Override
29    protected void onCreate(Bundle savedInstanceState) {
30        super.onCreate(savedInstanceState);
31        mBinder = ActivityMainBinding.inflate(getLayoutInflater());
32        setContentView(mBinder.getRoot());
33    }
34
35    public ActivityMainBinding getBinder() {
36        return mBinder;
37    }
38
39
40    @Override
41    public boolean onCreateOptionsMenu(Menu menu) {
42        // Inflate the menu; this adds items to the action bar if it is present.
43        getMenuInflater().inflate(R.menu.menu_main, menu);
44        return true;
45    }
46
47    @Override
48    public boolean onOptionsItemSelected(MenuItem item) {
49        // Handle action bar item clicks here. The action bar will
50        // automatically handle clicks on the Home/Up button, so long
51        // as you specify a parent activity in AndroidManifest.xml.
52        int id = item.getItemId();
53
54        //noinspection SimplifiableIfStatement
55        if (id == R.id.action_settings) {
56            return true;
57        }
58
59        return super.onOptionsItemSelected(item);
60    }
61}
62