古之立大事者,不惟有超世之才,亦必有坚忍不拔之志。这篇文章主要讲述我的Android进阶之旅------&
gt;
Android嵌入图像InsetDrawable的使用方法相关的知识,希望能为你提供帮助。
面试题:为一个充满整个屏幕的LinearLayout布局指定背景图。能否够让背景图不充满屏幕?请用代码描写叙述实现过程。
解决此题。能够使用嵌入(Inset)图像资源来指定图像,然后像使用普通图像资源一样使用嵌入图像资源。
语法例如以下:
< ?
xml version="1.0" encoding="utf-8"?> < inset xmlns:android="http://schemas.android.com/apk/res/android" android:drawable="@drawable/drawable_resource" android:insetTop="dimension" android:insetRight="dimension" android:insetBottom="dimension" android:insetLeft="dimension" />
元素解释:
以下使用详细的实例来看详细的效果android:insetTop:图像距离上边的距离。
android:insetRight:图像距离右側的距离。
android:insetBottom:图像距离底边的距离。
android:insetLeft:图像距离左側的距离。
首先定义了一个嵌入图像资源,res/drawable/inset.xml
< ?xml version="1.0" encoding="utf-8"?> < inset xmlns:android="http://schemas.android.com/apk/res/android" android:drawable="@drawable/background" android:insetBottom="50dp" android:insetLeft="50dp" android:insetRight="50dp" android:insetTop="50dp" />
当中android:drawable="@drawable/background"引用的是drawable文件夹下的background.jpg文件。图像例如以下所看到的:
文章图片
然后直接将inset.xml文件当做普通图像资源使用就可以,代码例如以下:
< LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" android:background="@drawable/inset"> < !-- 使用inset.xml作为背景图 --> < Button android:id="@+id/buttonRingtone" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="设置来电铃声" /> < Button android:id="@+id/buttonAlarm" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="设置闹钟铃声" /> < Button android:id="@+id/buttonNotification" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="设置通知铃声" /> < EditText android:id="@+id/text" android:layout_width="match_parent" android:layout_height="wrap_content" > < !-- 当前控件处于焦点状态 --> < requestFocus /> < /EditText> < /LinearLayout>
以下是详细的效果图,能够看到背景图没有占满全屏幕:
文章图片
==================================================================================== 作者:欧阳鹏 欢迎转载,与人分享是进步的源泉!
转载请保留原文地址:http://blog.csdn.net/ouyang_peng
====================================================================================
文章图片
【我的Android进阶之旅------& gt; Android嵌入图像InsetDrawable的使用方法】
推荐阅读
- Android——推断Service是否已经启动
- [Android]冷门常用 ADB
- VS2017 Cordova 出现错误 @ionic/app-scripts 未安装
- Android的静默安装
- 我是如何理解Android的Handler模型_2
- 出现Android.os.NetworkOnMainThreadException 错误
- Android studio统计项目总行数
- Android基础新手教程——4.2.3 Service精通
- android 中ProgressBar的使用