我想在tabcontent 显示一个图片并使用

android:scaleType

但是呢 一直不执行这个,但是放在别的acitivy 而不是tabactivity确实可以的

<?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:background="@drawable/background">    <include layout="@layout/main_list" /></RelativeLayout>background.xml res/drawable<?xml version="1.0" encoding="utf-8"?><bitmap xmlns:android="http://schemas.android.com/apk/res/android"    android:src="@drawable/background_img"    android:scaleType="centerInside"/>

修改为:

background drawable:<Drawable     android:src="@drawable/background_img"     android:layout_height="fill_parent"     android:layout_width="fill_parent"     android:scaleType="fitCenter" />

Drawable
比bitmap灵活性更大些

更多相关文章

  1. Android(安卓)AsyncTask源码简单分析
  2. Android(安卓)ApiDemos示例解析(15):App->Activity->SetWallpaper
  3. Android(安卓)本地代码中的LIKELY和UNLIKELY宏
  4. 如果获取android源码
  5. 在Android中解析ls 命令得到目录列表的方法
  6. Android(安卓)SDK 源代码关联Eclipse
  7. Android(安卓)SDK下载和更新失败的解决方法!!!
  8. Android系统启动执行jar程序
  9. Android应用程序执行流程

随机推荐

  1. Android整机源码如何轻松下载?清华大学And
  2. Android(安卓)mp3 LyricView
  3. 访问 Android 开发者网站 & Go 官网的 ti
  4. Android(安卓)Toast带图标水平布局的简单
  5. Android权限问题 及 APP应用图标
  6. Android使用TextView实现跑马灯效果
  7. 解决:Android中 Error generating final a
  8. Android(安卓)Studio无线调试app之Androi
  9. 配置新的product(译)——android编译系统
  10. android中的线程池