<Button android:id="@+id/AdultLeft1"
android:layout_width="40dip" android:text="@layout/active"
android:layout_marginTop="110dip" android:layout_height="wrap_content"
android:background="@drawable/notselectedtabright_landscape"
android:focusable="false"/>
并在active.xml
<?xml version="1.0" encoding="UTF-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"android:layout_width="fill_parent"
android:layout_height="wrap_content">
<com.xxx.VerticalTextView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="@color/black"
android:textStyle="bold"android:textSize="12dip"
android:text="Closed\nCases"/>
</RelativeLayout>
我有自定义VerticalTextView
。我想将此文本设置为xml中的Button。怎么做的?
答案 0 :(得分:0)
字符串是资源中的字符串,可以由 ANY VIEW 使用,这是 BIG HINT 。
<强>解释强>
android:text="@layout/active"
理想情况下,这应该是:
android:text="@string/myText"
当然myText
应该在你的strings.xml中