回答
下面是答案:)
你不需要你需要的東西的樣式文本 任何圖像,這裏是簡單和短期的方式做到這一點
button1.setText(Html.fromHtml("<b><big>" + "Title" + "</big></b>" + "<br />" +
"<small>" + "subtitle" + "</small>" + "<br />"));
你做不需要更改任何佈局只需將此文本添加到您的按鈕
可以在邏輯解決這個問題的邏輯是。
android:text="Titel \n subTitle"
我希望這對你有幫助。
Zoombie希望按鈕中的文本動態變化。所以這個解決方案是不可能的,我認爲。 – Sujit
我有更新我的答案嘗試... – DynamicMind
@sujit我想我應該有兩個相鄰的按鈕 – Zoombie
在XML中,你可以使用相對佈局,使其他文本上按鈕的頂部。
這只是一個例子,有不累的代碼。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="25dp"
android:id="@+id/button"
android:text="Text1" />
<TextView
android:id="@+id/label"
android:layout_alignBottom="@id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Text2"/>
</RelativeLayout>
- 1. 中心的文字爲標題和副標題
- 2. 按鈕,圖標和標題
- 3. 標題 - 在兩個按鈕中間顯示標題
- 4. AlertDialog中標題和按鈕的字體
- 5. 離子標題與右側的標題和2個按鈕
- 6. 如何在切換按鈕,標題和字幕中添加兩個文本?
- 7. navigationcontroller標題和按鈕
- 8. UINavigationController標題和按鈕
- 9. 交換標題與按鈕文字
- 10. 按鈕標題文字不清晰
- 11. 標題中的按鈕ExtJs
- 12. 帶兩種標題/方法的按鈕
- 13. CSS問題 - 標題按鈕和寬度
- 14. 快速更改按鈕標題後的後退按鈕標題
- 15. AS3 - 按鈕標題
- 16. Android標題按鈕
- 17. HTML&CSS - 在標題和按鈕標題中居中放置文本
- 18. 替換img標題標籤中的文本以創建帶標題副標題的圖像標題
- 19. 更改按鈕標籤的字體顏色和標題
- 20. 如何在Highcharts中添加圖片標題和副標題
- 21. 如何讓我的UITableViewCell不僅有標題和副標題,還有標題,副標題(日期)和另一個標籤(摘要)?
- 22. Android:包含標題和副標題的listitem的默認佈局
- 23. 從SQL列標題,另一列作爲副標題,另一個爲副副標題使用PHP
- 24. UINavigationBar的標題和右按鈕
- 25. 的UINavigationController和後退按鈕標題
- 26. fancybox中的兩個標題?
- 27. 標題標題和按鈕不垂直對齊JQM 1.4
- 28. Android對話框標題顏色和標題按鈕?
- 29. Sencha ExtJS標題標題中心文字
- 30. 如何顯示的foreach標題和副標題 - PHP
爲什麼你不使用圖像? – Sujit
或圖像按鈕... < –
由於標題和副標題中的文本經常變化 – Zoombie