1
我有一個絕對panel.I圖像設置我試圖設置它的位置通過code.But我沒有看到任何適用的方法/屬性來設置其位置。絕對佈局設置圖像位置
這是我的佈局。
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
>
<ImageView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@+id/marker" android:src="@drawable/marker" android:layout_y="106dp" android:layout_x="290dp"></ImageView>
</AbsoluteLayout>
這裏是我的代碼來設置其位置
marker = (ImageView)findViewById(R.id.marker);
marker.//Can't find a method or property
我在這個應用程序中有兩個圖像。如何讓圖像1移動到圖像2頂部的某個位置? – 2010-11-21 04:35:19
在主佈局中也有一些按鈕。 – 2010-11-21 04:35:36
Framelayout僅支持一個圖像? – 2010-11-21 04:37:11