我尝试让我的ScrollView的内容溢出它的包装器布局边界。即使将android:clipChildren =“false”设置为他的所有祖先,也行不通。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/hideInputfocus"
android:clipChildren="false" <!--Here-->
android:clipToPadding="false"
android:focusableInTouchMode="true"
tools:context=".MainActivity$PlaceholderFragment">
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/map"
android:clipChildren="false" <!--Here-->
android:clipToPadding="false"
tools:context="ch.bla.bla.activities.MapsActivity"
android:name="com.google.android.gms.maps.SupportMapFragment" />
<ScrollView
android:layout_width="100dp"
android:layout_height="400dp"
android:layout_marginTop="@dimen/dimension_name"
android:scrollbars="none"
android:clipChildren="false" <!--And here-->
android:clipToPadding="false"
android:background="@color/white"
android:id="@+id/cp_scrollView">
<!--android:background="@color/white"-->
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:clipChildren="false" <!--And here-->
android:clipToPadding="false"
android:id="@+id/scrollbar_layout"
>
<!--<TextView-->
<!--My overflowing textView
希望有人可以帮助我。
感谢