我试图通过以下方法在另一个xml文件中重用已经创建的布局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">
<include
android:id="@+id/insertTask"
layout="@layout/activity_edit_screen">
</include>
</RelativeLayout>
布局文件activity_edit_screen有一个名为&#34;更新&#34;的按钮,我想将该按钮更改为&#34;添加&#34;。这是两个xml文件之间的唯一变化。我怎么能这样呢?我试图在另一个中重复使用一个xml。请提供建议。提前致谢。
答案 0 :(得分:0)
尝试在后面的代码中重命名按钮。
Button button=(Button)findViewByID(R.id.button1);
button.setText("Add");
答案 1 :(得分:0)
尝试在初始化视图后重命名onCreate()中的按钮文本。
Button sample_btn=(Button)findViewById(R.id.sample_btn);
sample_btn.setText("Add")