使用自定义视图的自定义属性传入布局资源

Posted

技术标签:

【中文标题】使用自定义视图的自定义属性传入布局资源【英文标题】:pass in a layout resource using custom attributes for a custom view 【发布时间】:2013-07-19 11:11:28 【问题描述】:

我想在 XML 中为自定义视图指定一个子布局,类似于 include 元素的 layout 属性:

<include layout="@layout/all_apps_cling"
         android:id="@+id/all_apps_cling"
         android:layout_
         android:layout_/>

此外,我需要在设计时在 Eclipse 或 IntelliJ 图形布局预览中呈现自定义视图

使用 attr name="android:layout" 不起作用

[至少不在图形布局预览中]

attrs.xml

<declare-styleable name="ShowcaseView">
    <attr name="android:layout"/>
</declare-styleable>

用例.xml

<com.github.espiandev.showcaseview.ShowcaseView
    style="@style/ShowcaseView"/>

styles.xml

<style name="ShowcaseView" parent="match_fill">
    <item name="android:layout">@layout/handy</item>
</style>

ShowcaseView.java

public ShowcaseView(Context context) 
    this(context, null, R.styleable.CustomTheme_showcaseViewStyle);


public ShowcaseView(Context context, AttributeSet attrs) 
    this(context, attrs, R.styleable.CustomTheme_showcaseViewStyle);


public ShowcaseView(Context context, AttributeSet attrs, int defStyle) 
    super(context, attrs, defStyle);
    // Get the attributes for the ShowcaseView
    final TypedArray styled = context.getTheme().obtainStyledAttributes(attrs, R.styleable.ShowcaseView, 0, 0);
    TypedValue handLayout = null;
    // Not sure if should be using .getValue in the first place
    // But there is no method TypedValue.getLayout or such 
    if (styled.getValue(R.styleable.ShowcaseView_android_layout, handLayout)) 
        // Does not reach here
     else 
        // Reaches here instead i.e. getValue failed
    
    styled.recycle();

有什么解决办法吗?

而且我不能使用&lt;attr name="linkedLayout" format="reference"/&gt;,因为我需要它在图形布局预览中工作 - 请参阅设计器中访问资源的问题Resources$NotFoundException in Graphical Layout ADT preview (but app actually Works)

【问题讨论】:

你试过了吗: 【参考方案1】:

尝试将您的布局放在主布局文件中:

<ShowcaseView ...>
    <include .../>
</ShowcaseView> 

当然你也可以直接添加children而不是include标签:

<ShowcaseView ...>
    <Button .../>
    ...
    <Button .../>
</ShowcaseView> 

【讨论】:

以上是关于使用自定义视图的自定义属性传入布局资源的主要内容,如果未能解决你的问题,请参考以下文章

如何通过传入枚举值和属性类型来获取枚举的自定义属性?

自定义布局,丢失 attrs.xml 中的自定义属性

android:如何使用属性集构造函数实例化我的自定义视图

Gradle插件开发 APK瘦身资源自定义7z压缩

vue 自定义组件的自定义属性

有没有办法在Android Studio布局编辑器中看到应用于操作栏的自定义布局?