1

我目前正在将一个 xml 文件转换为 java 编码,但我遇到了一个问题。在我的 xml 文件中,我有一个带有两个 xmlns 属性的视图,如下所示:

xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:launcher="http://schemas.android.com/apk/res/com.android.launcher"

如何将这些广告添加到我在 java 中的自定义 FrameLayout 中?

4

1 回答 1

1

属性的目的xmlns是告诉设计时和构建时工具有关各种 UI 元素的信息,例如ButtonTextViewFrameLayout

如果您正在编写 Java 代码以动态构建布局,则只需导入相关的小部件和视图类基本上是等效的。换句话说,不要担心xmlns属性。

于 2012-08-21T15:25:09.380 回答