Vector splash screen image with a half of screen size on Android(Android上屏幕尺寸减半的矢量闪屏)
本文介绍了Android上屏幕尺寸减半的矢量闪屏的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个闪屏,上面有一个大小为480dp的矢量图像和径向渐变:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle" >
<!-- <solid android:color="#FF07862c"/> -->
<gradient
android:type="radial"
android:startColor="#086824"
android:endColor="#098a2f"
android:gradientRadius="480dp"
android:centerX="0.5"
android:centerY="0.5"/>
</shape>
</item>
<!-- <item android:drawable="@drawable/background0" android:gravity="center"/> -->
<item android:drawable="@drawable/logo"
android:width="480dp"
android:height="480dp"
android:gravity="center"/>
</layer-list>
如何设置图像大小
min(screen_width, screen_height) / 2
(伪代码)?
apptheme.xml
:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="@android:style/Theme.DeviceDefault.Light.NoActionBar">
<item name="android:windowBackground">@drawable/splash</item>
</style>
</resources>
AndroidManifest.xml
:
<activity android:name="com.myapp.MainActivity"
android:theme="@style/AppTheme"
推荐答案
您可以通过将LayerDrawable
修改为运行时的层属性来实现此目的。
对于drawable.xml
,您可以按如下方式修改索引1处的层。然后您需要在运行时设置windowBackground
。
val layerDrawable = ContextCompat.getDrawable(this,R.drawable.test) as LayerDrawable
val size = resources.displayMetrics.widthPixels.coerceAtMost(resources.displayMetrics.heightPixels) /2
layerDrawable.setLayerGravity(1,Gravity.CENTER)
layerDrawable.setLayerHeight(1,size)
layerDrawable.setLayerWidth(1,size)
window.setBackgroundDrawable(layerDrawable)
同样,如果需要,您可以修改任何层。第一层将是GradientDrawable
,如果您需要更改它,则获取layerDrawable
的可抽屉并将其强制转换为GradientDrawable
。然后您可以更改其属性。
这篇关于Android上屏幕尺寸减半的矢量闪屏的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
织梦狗教程
本文标题为:Android上屏幕尺寸减半的矢量闪屏


基础教程推荐
猜你喜欢
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01