Advertisement
letmedanz

Untitled

Feb 2nd, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2014 The Android Open Source Project
  3.  
  4. Licensed under the Apache License, Version 2.0 (the "License");
  5. you may not use this file except in compliance with the License.
  6. You may obtain a copy of the License at
  7.  
  8. http://www.apache.org/licenses/LICENSE-2.0
  9.  
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16.  
  17. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  18. android:id="@+id/dashboard"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:scrollbarStyle="outsideOverlay"
  22. android:clipToPadding="false">
  23.  
  24. <LinearLayout
  25. android:id="@+id/dashboard_container"
  26. android:layout_width="match_parent"
  27. android:layout_height="match_parent"
  28. android:layout_gravity="center_horizontal"
  29. android:paddingStart="@dimen/dashboard_padding_start"
  30. android:paddingEnd="@dimen/dashboard_padding_end"
  31. android:paddingTop="@dimen/dashboard_padding_top"
  32. android:paddingBottom="@dimen/dashboard_padding_bottom"
  33. android:orientation="vertical"
  34. />
  35.  
  36. </ScrollView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement