我得到一个填充了ImageViews的LinearLayout。 ImageViews放置在下面的代码中,它们一起大于屏幕并被剪裁。
我实现了一个函数,它使用LinearLayout的setX()和setY()来移动它。但是当我移动布局时,剪切的ImageViews不会重绘。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent"
>
<RelativeLayout
android:id="@+id/intro_relativ_layout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:clipChildren="false"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal"
>
<ImageView android:src="@drawable/_1a"
/>
<ImageView android:src="@drawable/_1b"
/>
<ImageView android:src="@drawable/_1c"
/>
</LinearLayout>
我尝试了什么:
你可能得到了答案