我正在尝试向框架添加一个新的布局,例如my_layout。
我部分成功了。
我在xml中定义了我的布局并将其放在 frameworks / base / core / res / res / layout
中然后我在 frameworks / base / core / res / res / values 中提到了id public.xml和ids.xml
执行完整版本后:
制作框架
make update-api
制作
我能够以 android.R.layout.my_layout
的形式访问它但现在我想通过xml访问它:例如:“ @android:layout / my_layout”
我在源中的哪个位置提到过这个参考?
答案 0 :(得分:0)
尝试在布局文件夹中的my_layout.xml文件中声明id。
例如:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
...
快乐编码:)