Android之属性动画,flutter通知栏提醒


1、新建一个模拟太阳的drawable资源(sun.xml):

android:shape=“oval”>

2、建立布局文件构建整个场景(fragment_sunset.xml):

android:orientation=“vertical”

android:layout_width=“match_parent”

android:layout_height=“match_parent”>

android:id="@+id/sky"

android:layout_width=“match_parent”

android:layout_height=“0dp”

android:layout_weight=“0.61”

android:background="@color/blue_sky">

android:id="@+id/sun"

android:layout_width=“100dp”

你可能感兴趣的:(程序员,面试,移动开发,android)