Context-detection API for Android developed as a university project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

container.xml 863B

1234567891011121314151617181920212223
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:orientation="vertical">
  6. <LinearLayout
  7. android:id="@+id/fixedcontent"
  8. android:layout_width="fill_parent"
  9. android:layout_height="wrap_content"
  10. android:orientation="vertical"/>
  11. <ScrollView
  12. android:id="@+id/scroll"
  13. android:layout_width="fill_parent"
  14. android:layout_height="fill_parent"
  15. android:layout_weight="1"
  16. android:scrollbars="none">
  17. <LinearLayout
  18. android:id="@+id/content"
  19. android:layout_width="fill_parent"
  20. android:layout_height="fill_parent"
  21. android:orientation="vertical"/>
  22. </ScrollView>
  23. </LinearLayout>