当前位置: 代码迷 >> Android >> android像素有关问题
  详细解决方案

android像素有关问题

热度:90   发布时间:2016-05-01 17:52:54.0
android像素问题
我手机的分辨率是854*480,我在

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="480px"
  android:layout_height="854px"
  android:background="@drawable/h1">

给宽和高设置为854px*480px

但是在手机上运行只能看见一部分图片,我想知道我的背景图大小要怎么做

------解决方案--------------------
android:layout_width="fill_parent"
 android:layout_height="fill_parent"
------解决方案--------------------
建议你看下bitmap
  相关解决方案