說我有一個ImageButton。我想要一個在圖像按鈕頂部的textview,並集中於它。我將如何做到這一點?如何將TextView放在ImageButton的中心?
0
A
回答
1
,你可以通過在FrameLayout
例如包裝的小部件都做到這一點:
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<ImageButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/image" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/text"
android:layout_gravity="center" />
</FrameLayout>
0
您是否過於複雜佈局。只需將文本添加到按鈕。
myImageButton.setText("text");
如果你確實想層中的這些觀點,你應該使用的RelativeLayout:
<RealtiveLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageButton
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/img"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:layout_centerInParent="true"/>
</RelativeLayout>
作出特殊情況說明屬性layout_centerInParent
的。這是TextView如何正確居中。
0
使用常規的Button,無論如何擴展TextView。然後將背景設置爲圖像並使用setText()設置文本。您甚至可以使用drawableLeft,drawableTop等屬性在文本右上方,下方和/或左側添加圖標&。
相關問題
- 1. 如何使用LinerLayout將ImageButton左側和TextView中心對齊?
- 2. 在RelativeLayout中居中放置ImageButton和TextView
- 3. ImageButton上的中心TextView編程式
- 4. 將TextView放在ImageView的中心?
- 5. 如何把TextView放在中心?
- 6. 如何在Android中縮放TextView並將其保存在中心
- 7. 如何將textviews中心放在近imageview和textview android中?
- 8. 將TextView放置在TableRow中ImageView的中心
- 9. ImageButton右鍵TextView
- 10. 如何將UITableView放在UIView的中心
- 11. 如何放置在TextView中
- 12. 如何將WebView放置在佈局和中心水平的TextView下面?
- 13. 在Android中使用TextView的ImageButton
- 14. Android將TextView改爲ImageButton的寬度
- 15. 如何將按鈕放置在中心?
- 16. 如何將EditText放入TextView中
- 17. 如何將ImageView和TextView放在一起?
- 18. 安卓:中心的ImageButton在LinearLayout中
- 19. 在相對佈局中將ImageButton下方的TextView對齊
- 20. 中心SeekBar和ImageButton的在RelativeLayout的
- 21. 如何將我的textView居中放在ImageView中間?
- 22. 如何將TextView的文本放在運動中,在android上?
- 23. 如何將播放器放在libgGDX攝像頭的中心
- 24. Android - 如何將TextView中的符號對齊到中心
- 25. 如何在textview-listview-textview之後放置textview-listview-textview android
- 26. ImageButton未與中心對齊
- 27. 如何將textview的值放在if語句中
- 28. 如何將TextView放置在另一個RelativeLayout的RelativeLayout中?
- 29. 同時選擇ImageButton和TextView
- 30. 如何在textview中放置邊框?