从customView android获取样式引用

时间:2016-11-28 13:59:44

标签: android android-custom-view android-styles

我从LinearLayout扩展了自定义视图。在editText和ImageView中。 我想为editText设置自定义样式

<resources>
    <declare-styleable name="custom_view">
        <attr name="editTextStyle" format="reference" />
    </declare-styleable>
</resources>

<com.test.CustomView
    xmlns:android="http://schemas.android.com/apk/res"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:editTextStyle="@style/CustomEditTextStyle"
    />

我很难在CustomView中接收样式引用。 如何从参考中获取风格?

任何帮助都会很高兴!谢谢!

1 个答案:

答案 0 :(得分:0)

您可以关注其中一个Android视图源代码。 例如,取自TextView.java

onPrepare: function() {
  jasmine.getEnv().addReporter(
    new Jasmine2HtmlReporter({
      savePath: 'target/screenshots',
      fixedScreenshotName: true,
    })
  );}