В своем коде я изменяю размер растрового изображения, а затем использую растровое изображение в своем коде, используя imageView.setImageBitmap()
.Однако по какой-то причине изображение не будет в верхней части макета, скорее оно окажется в центре экрана (http://imageshack.us/photo/my-images/841/ssbluepic.png/)
Вот код для моего файла макета
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/relativeLayout1" android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- <TextView android:layout_height="wrap_content" android:layout_width="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:id="@+id/textView1"></TextView>
<TextView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/textView2"></TextView> -->
<ImageView android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/imageView1"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"></ImageView>
</RelativeLayout>
(два TextViews
закомментированы).
Любая помощь с этим будет высоко ценится!