content_main.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:paddingBottom="@dimen/activity_vertical_margin"
  9. android:paddingLeft="@dimen/activity_horizontal_margin"
  10. android:paddingRight="@dimen/activity_horizontal_margin"
  11. android:paddingTop="@dimen/activity_vertical_margin"
  12. app:layout_behavior="@string/appbar_scrolling_view_behavior"
  13. tools:context="com.uddream.plugin.MainActivity"
  14. tools:showIn="@layout/activity_main">
  15. <TextView
  16. android:id="@+id/test"
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:clickable="true"
  20. android:text="Hello World!"/>
  21. <FrameLayout
  22. android:id="@+id/container"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"></FrameLayout>
  25. </RelativeLayout>