的一部分,我想提請ImageView的文本在與9patch背景相對佈局。的Android只繪製的ImageView
<?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/splash_last" >
<ImageView
android:id="@+id/imageView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:src="@drawable/appnameimg" >
</ImageView>
</RelativeLayout>
在編輯,我有這樣的:
在手機上:
看來,我有一個從字符串僅有3字符。
我的錯誤在哪裏?
UPD
有背景和文本圖像。這可能是因爲「壞」9patch? link to images
你能分享文字圖片下載,我可以嘗試其他選項之一? – havexz
你正在運行的版本是什麼?還有,你只有在'drawable-hdpi'文件夾中放置圖像文件? – havexz
我只有一個hdpi資源。我的Android 2.2 – Vbif