是否可以使用自定义视图布局声明布局而不包含换行根元素?我的自定义视图有效,但如果我膨胀以下layout.xml,它总是匹配父:
custom_view.xml
<?xml version="1.0" encoding="utf-8"?>
<com.company.ui.CustomView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="@dimen/custom_view_height"
android:layout_width="@dimen/custom_view_width" />
dimons.xml
<resources>
<dimen name="custom_view_height">300dp</dimen>
<dimen name="custom_view_width">400dp</dimen>
</resources>
但是当自定义视图加载并附加时,我看到它的计算大小(来自onMeasure
)是设备屏幕的大小。
我是否真的需要将layout.xml声明为:
custom_view.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<com.company.ui.CustomView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="@dimen/custom_view_height"
android:layout_width="@dimen/custom_view_width" />
</LinearLayout>
这似乎有点无意义,因为我实际上并不关心LinearLayout,也不想记住我投入到膨胀的R.layout.custom_view中的内容。
答案 0 :(得分:2)
http://www.doubleencore.com/2013/05/layout-inflation-as-intended/
基本上,如果在未指定父级的情况下对布局进行膨胀,则会丢弃在布局xml的根目录中指定的所有layout_xxx
属性。你应该将你的布局膨胀为
inflater.inflate(R.layout.your_layout, parent, false);
另请注意,如果传递true(附加到root),则返回的元素将是提供的父元素。请注意这一点,因为当您期望返回夸大的布局时可能会出现问题!