]> Softwares of Agnibho - solarcompass.git/blob - solarcompass/src/main/java/com/agnibho/android/solarcompass/HelpActivity.java
Initial commit
[solarcompass.git] / solarcompass / src / main / java / com / agnibho / android / solarcompass / HelpActivity.java
1 /**********************************************************************
2 * Title: Solar Compass
3 * Description: Android app for finding directions using the sun
4 * Author: Agnibho Mondal
5 * Website: http://code.agnibho.com/solarcompass
6 **********************************************************************
7 Copyright (c) 2016 Agnibho Mondal
8 All rights reserved
9 **********************************************************************
10 This file is part of Solar Compass.
11
12 Solar Compass is free software: you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation, either version 3 of the License, or
15 (at your option) any later version.
16
17 Solar Compass is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with Solar Compass. If not, see <http://www.gnu.org/licenses/>.
24 **********************************************************************/
25
26 package com.agnibho.android.solarcompass;
27
28 import android.os.Bundle;
29 import android.support.v7.app.AppCompatActivity;
30 import android.support.v7.widget.Toolbar;
31
32 public class HelpActivity extends AppCompatActivity {
33
34 @Override
35 protected void onCreate(Bundle savedInstanceState) {
36 super.onCreate(savedInstanceState);
37 setContentView(R.layout.activity_help);
38 Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
39 setSupportActionBar(toolbar);
40 getSupportActionBar().setDisplayHomeAsUpEnabled(true);
41 }
42
43 }