本文主要是介绍android 从xml中读出一个View再添加到另一个xml中,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
比如现在有两个xml文件main1.xml和main2.xml,需要将main2.xml中的一个view添加到main1.xml中 例如main1.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/relative">
<TextView
android:id="@+id/textView1"
androi
这篇关于android 从xml中读出一个View再添加到另一个xml中的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!