Jan-Felix Schmakeit 8dd256c901 Add updated ApiDemos from Google Play Services SDK.
Change-Id: I6ee3915664b8fc8ffe6d00dea0eb68a133c124f2
2015-10-12 12:11:45 +11:00

33 lines
1.0 KiB
Java

/*
* Copyright (C) 2012 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.example.mapdemo;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
/**
* An activity that creates a map with some initial options.
*/
public final class OptionsDemoActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.options_demo);
}
}