Advertisement
Guest User

Untitled

a guest
Jul 26th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.67 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:id="@+id/hideInputfocus"
  6. android:clipChildren="false" <!--Here-->
  7. android:clipToPadding="false"
  8. android:focusableInTouchMode="true"
  9. tools:context=".MainActivity$PlaceholderFragment">
  10.  
  11. <fragment xmlns:android="http://schemas.android.com/apk/res/android"
  12. xmlns:tools="http://schemas.android.com/tools"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:id="@+id/map"
  16. android:clipChildren="false" <!--Here-->
  17. android:clipToPadding="false"
  18. tools:context="ch.bla.bla.activities.MapsActivity"
  19. android:name="com.google.android.gms.maps.SupportMapFragment" />
  20.  
  21.  
  22.  
  23. <ScrollView
  24. android:layout_width="100dp"
  25. android:layout_height="400dp"
  26. android:layout_marginTop="@dimen/dimension_name"
  27. android:scrollbars="none"
  28. android:clipChildren="false" <!--And here-->
  29. android:clipToPadding="false"
  30. android:background="@color/white"
  31. android:id="@+id/cp_scrollView">
  32. <!--android:background="@color/white"-->
  33.  
  34. <LinearLayout
  35. android:orientation="vertical"
  36. android:layout_width="wrap_content"
  37. android:layout_height="wrap_content"
  38. android:layout_centerVertical="true"
  39. android:layout_alignParentLeft="true"
  40. android:layout_alignParentStart="true"
  41. android:clipChildren="false" <!--And here-->
  42. android:clipToPadding="false"
  43. android:id="@+id/scrollbar_layout"
  44. >
  45.  
  46. <!--<TextView-->
  47. <!--My overflowing textView
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement