<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
Androidのボタンのカスタムテキストを設定するにはどうすればよいですか?
<?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に設定したいと思います。それはどうですか?
チェック '/res/values/strings.xmlする必要があります'ファイル。そして、あなたが達成したいことを具体的に説明してください。 – Ghost
詳しい説明が必要です。 :) –
実際に私はここに私のコードを表示しないコード –