【发布时间】:2011-10-12 06:58:26
【问题描述】:
查看 Fede 的 UberMusic 的主题后,我发现了文件 album_screen.xml。以下是该文件的来源。基本上我注意到他的主题能够使用属于他的应用程序一部分的自定义视图,并且它们在顶部有这个 XML 命名空间theme。我错过了关于他如何将他的属性应用于他无法控制的视图的联系,以及 Eclipse 如何正确编译下面的代码。我将 URL http://schemas.uberdroidstudio.com/theme 放入浏览器的地址栏中,但什么也没有出现,我无法弄清楚 Eclipse 在哪里/如何知道命名空间支持的属性。提前感谢您的帮助。
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:theme="http://schemas.uberdroidstudio.com/theme">
<TextView
android:id="@id/artist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="0.0"
theme:textFilter="uppercase" /> <!-- This is the interesting line -->
【问题讨论】:
标签: android xml namespaces themes