任何人都可以讓我的xml代碼在android?將xml轉換爲代碼
我想創建一個新的按鈕,具有相同的位置,關係,高度和寬度的編程方式,就像我附在這裏的xml。我在這裏閱讀了一些問題,但我不明白。我英語不好。謝謝。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:layout_marginLeft="27dp"
android:layout_marginTop="25dp"
android:layout_toLeftOf="@+id/textView1"
android:text="Button" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:text="New Buttons" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button1"
android:layout_alignBottom="@+id/button1"
android:layout_alignParentRight="true"
android:layout_marginRight="20dp"
android:layout_toRightOf="@+id/textView1"
android:text="Button" />
<Button
android:id="@+id/button3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/button1"
android:layout_below="@+id/button1"
android:layout_marginTop="30dp"
android:layout_toLeftOf="@+id/textView1"
android:text="Button" />
<Button
android:id="@+id/button4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/button3"
android:layout_alignBottom="@+id/button3"
android:layout_alignRight="@+id/button2"
android:layout_toRightOf="@+id/textView1"
android:text="Button" />
我有一個應用程序,它可以獲取數據庫中的數據數量,如果數據庫服務器添加新數據,它也會自動爲每個數據創建一個按鈕。我的應用程序將刷新併爲該新數據添加新按鈕。 –