我创建了一个自定义文本视图,但是我找不到使用它的方法,仅找到了Java的示例。但是com.yournamespace.RotatedTextView
,com.yournamespace.RotatedTextView
和RotatedTextView
无法识别。
我创建了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 { }
有任何想法或消息来源吗?
答案 0 :(得分:0)
您应该在.axml
文件中使用类似以下代码的内容:
<First_android.RotatedTextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:text="Test" />