我用.xml創建了我的用戶界面,但是我想通過動態指定按鈕的方向。 舉例;Android中的動態按鈕指示
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/backbutton"
android:text="TEST123"
android:layout_x="120px"
android:layout_y="120px"
android:layout_width="100px"
android:layout_height="100px" />
</AbsoluteLayout>
然後就是我的活動我班通過動態類似的改變的東西。
AbsoluteLayout al = new AbsoluteLayout(this);
Button t = new Button(this);
t.setHeight(300);
t.setWidth(300);
t.setText("TEST123");
// x y ???
setContentView(al);
我改變了高度和寬度..但我找不到改變x和y方向的方法。
你能舉個例子記錄我的代碼嗎? – Dapina 2011-05-09 20:31:07
頂部,左邊,右邊,底部是什麼意思? – Dapina 2011-05-09 20:35:53
它們是填充參數。 – yogsma 2011-05-09 20:38:08