0
私は水平の背景に青い色を付けました!しかし、青の代わりに、私はレイアウトに少しのバブルで海のような背景を追加する必要があります。私は検索して解決策を見つけられませんでした。水平ビューで背景にアニメーションを追加するにはどうすればよいですか?
私のレイアウトは次のとおりです。
<LinearLayout android:id="@+id/switcher_view"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/background_light">
<HorizontalScrollView android:id="@+id/switcher_scroller"
android:background="@color/blue_200"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="none">
<LinearLayout android:id="@+id/switcher_container"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="match_parent">
</LinearLayout>
</HorizontalScrollView>
</LinearLayout>
現在のところ、それは次のようになります。
の代わりに青静的、私は水に似ているいくつかの気泡やアニメーションを必要とします!その後、タスクは非常にsimple..firstこのようなレイアウトに変更を加えるようにするに
はい!働いた:) –