如何在axml中使用自定义textview?

时间:2018-12-27 23:21:17

标签: c# android xamarin

我创建了一个自定义文本视图,但是我找不到使用它的方法,仅找到了Java的示例。但是com.yournamespace.RotatedTextViewcom.yournamespace.RotatedTextViewRotatedTextView无法识别。

我创建了attrs.xml并添加:

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <declare-styleable name="RotatedTextView">
    <attr name="customFont" format="string"/>
  </declare-styleable>
</resources>

没有帮助,自定义文本视图的开始像这样:

namespace First_android {

  public class RotatedTextView : TextView { }

有任何想法或消息来源吗?

1 个答案:

答案 0 :(得分:0)

您应该在.axml文件中使用类似以下代码的内容:

<First_android.RotatedTextView
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:text="Test"  />