Advertisement
Guest User

Untitled

a guest
Dec 22nd, 2014
152
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.68 KB | None | 0 0
  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2. xmlns:tools="http://schemas.android.com/tools"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:paddingBottom="@dimen/activity_vertical_margin"
  6. android:paddingLeft="@dimen/activity_horizontal_margin"
  7. android:paddingRight="@dimen/activity_horizontal_margin"
  8. android:paddingTop="@dimen/activity_vertical_margin"
  9. tools:context="com.tie.android.restautanta.MainActivity" >
  10.  
  11. <TextView
  12. android:layout_width="wrap_content"
  13. android:layout_height="wrap_content"
  14. android:text="@string/hello_world" />
  15.  
  16. <fragment
  17. android:id="@+id/map"
  18. android:name="com.google.android.gms.maps.MapFragment"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"/>
  21.  
  22. </RelativeLayout>
  23.  
  24. <?xml version="1.0" encoding="utf-8"?>
  25. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  26. package="com.tie.android.restautanta"
  27. android:versionCode="1"
  28. android:versionName="1.0" >
  29.  
  30. <uses-sdk
  31. android:minSdkVersion="8"
  32. android:targetSdkVersion="21" />
  33.  
  34. <application
  35. android:allowBackup="true"
  36. android:icon="@drawable/ic_launcher"
  37. android:label="@string/app_name"
  38. android:theme="@style/AppTheme" >
  39. <activity
  40. android:name=".MainActivity"
  41. android:label="@string/app_name" >
  42. <intent-filter>
  43. <action android:name="android.intent.action.MAIN" />
  44.  
  45. <category android:name="android.intent.category.LAUNCHER" />
  46. </intent-filter>
  47. </activity>
  48.  
  49. <meta-data
  50. android:name="com.google.android.maps.v2.API_KEY"
  51. android:value="AIzaSyBELTrw2KpEKw8H4sncZBBsViLyRsrWCvs" />
  52. </application>
  53.  
  54. </manifest>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement