首页SEO优化网站建设趣事分享SEM教程常用代码下载网站建设模板网站设计PHP教程Premiere Pro教程建站教程网站优化JavaScript教程图集登录 / 注册

android 如何构建背景渐变的页面

shape.xml:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
	android:shape="rectangle">
	<gradient android:startColor="#FF123456" android:endColor="#FF654321"
		android:angle="270" />
</shape>

style.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
	<style name="NewTheme" parent="android:Theme">
		<item name="android:background">@drawable/shape</item>
	</style>
</resources>


配置文件:

<activity android:name=".translucent" android:label="@string/app_name"
   android:theme="@style/NewTheme">

评论 0

评论功能暂未开放