TestLibraryMainActivity.java revision 2e2043d30f95585de2069e1cbb23e022ab0e71c4
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(this);
30        setContentView(binder.getRoot());
31
32    }
33
34
35    @Override
36    public boolean onCreateOptionsMenu(Menu menu) {
37        // Inflate the menu; this adds items to the action bar if it is present.
38        getMenuInflater().inflate(R.menu.menu_test_library_main, menu);
39        return true;
40    }
41
42    @Override
43    public boolean onOptionsItemSelected(MenuItem item) {
44        // Handle action bar item clicks here. The action bar will
45        // automatically handle clicks on the Home/Up button, so long
46        // as you specify a parent activity in AndroidManifest.xml.
47        int id = item.getItemId();
48
49        //noinspection SimplifiableIfStatement
50        if (id == R.id.action_settings) {
51            return true;
52        }
53
54        return super.onOptionsItemSelected(item);
55    }
56}
57