Home | History | Annotate | Download | only in appwithspaces
      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 
     17 package android.databinding.appwithspaces;
     18 
     19 import android.databinding.appwithspaces.databinding.ActivityMainBinding;
     20 import android.app.Activity;
     21 import android.os.Bundle;
     22 import android.view.Menu;
     23 import android.view.MenuItem;
     24 import android.view.ViewGroup;
     25 
     26 public 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