gpt4 book ai didi

java - 如何在eclipse中引用android框架资源?

转载 作者:行者123 更新时间:2023-12-01 23:24:34 24 4
gpt4 key购买 nike

我想使用框架中已定义的资源 ID edittext_container

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@*android:id/edittext_container"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="5dip"
android:orientation="vertical">

<TextView android:id="@+android:id/message"
style="?android:attr/textAppearanceSmall"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textColor="?android:attr/textColorSecondary" />

</LinearLayout>

但是 Eclipse 构建错误:

Illegal resource reference: @*android resources are private and not always present

如何解决?

此 ID 位于 http://androidxref.com/4.2.2_r1/xref/frameworks/base/core/res/res/layout/preference_dialog_edittext.xml

最佳答案

您无法引用 Android 私有(private)资源。但您可以复制它们并将其放入您自己的项目资源文件夹中。

您可以在这里找到所有内容 https://android.googlesource.com/platform/frameworks/base/+/android-4.3_r2.3/core/res/res/

但是,这些主题/样式可能是嵌套的并且具有深层依赖性。您需要从原始文件中提取很多内容。

关于java - 如何在eclipse中引用android框架资源?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20213419/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com