2012-02-09 10 views
0
<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.xmlAndroidのボタンのカスタムテキストを設定するにはどうすればよいですか?

<?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

チェック '/res/values/strings.xmlする必要があります'ファイル。そして、あなたが達成したいことを具体的に説明してください。 – Ghost

+0

詳しい説明が必要です。 :) –

+0

実際に私はここに私のコードを表示しないコード –

答えて

0

文字列は、リソース内の文字列であり、これはBIGヒントあるによってANY VIEWを使用することができます。

説明

android:text="@layout/active" 

理想的には、これは次のようになります。もちろんmyText

android:text="@string/myText" 

あなたのstrings.xmlに

+0

あなたは私に例を挙げて説明することができます –

+0

ansを受け入れるように。それはあなたがそれを持って聞こえる。 – OnkarDhane

+0

あなたは私のボタンのためにカスタムテキストを設定する例を教えてください。 –

関連する問題