如何在Android中为按钮设置自定义文字?

时间:2012-02-09 06:13:24

标签: android android-layout

<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。怎么做的?

1 个答案:

答案 0 :(得分:0)

字符串是资源中的字符串,可以由 ANY VIEW 使用,这是 BIG HINT

<强>解释

android:text="@layout/active"

理想情况下,这应该是:

android:text="@string/myText"

当然myText应该在你的strings.xml中