我具有以下用于活动的布局XML。单击按钮后,应在Java代码中以编程方式将按钮文本更改为“确定”。请编写代码以完成此操作。只需编写与需求直接相关的语句即可。
<?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"
android:paddingLeft="16dp"
android:paddingRight="16dp" >
<Button
android:id="@+id/my_button"
android:layout_width="96dp"
android:layout_height="wrap_content"
android:text="@string/done"
android:onClick="changeText"
/>
</RelativeLayout>