-1
A
回答
2
您可以將textview和圖像放在框架佈局中並動態更新它們。
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:src="@drawable/blue_bg"
android:layout_gravity="center"
android:scaleType="centerInside"/>
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="83"/>
</FrameLayout>
這樣的事情,希望這有助於:) -Sathya
相關問題
- 1. 網頁設計圓弧效果
- 2. R:製作分數計/漸變圓弧
- 3. 從圓弧計算圓的大小?
- 4. C++在Direct2D中繪製圓弧設備
- 5. 在Android中使用SweepGradient繪製圓弧
- 6. 的Android Andengine圓弧路徑
- 7. 以八度音繪製圓弧
- 8. iOS CoreGraphics:繪製圓弧,從交叉弦定理確定圓弧角度
- 9. 查找控制點以在橢圓上繪製圓弧
- 10. 用圓弧覆蓋設定器
- 11. Android,Java,繪製圓弧形狀的特定形狀
- 12. Android填充部分圓弧
- 13. 繪製透明圓弧
- 14. 在three.js中繪製圓弧
- 15. wx python繪製圓弧和圓
- 16. 是否可以使用System.Windows.Shapes.Path繪製一個圓(閉合圓弧)?
- 17. Tkinter綁定到圓弧
- 18. 如何計算橢圓弧的點
- 19. 圓弧的矩形框計算
- 20. 如何計算圓弧值的總和
- 21. Android - 計算弧角
- 22. 圓弧時間
- 23. SVG圓弧區
- 24. 圓括弧的JavaScript
- 25. 繪製圓弧的高效算法?
- 26. 繪製的弧是一個圓圈
- 27. 可以處理圓錐弧段的計算幾何算法
- 28. 在Java中計算圓弧角度
- 29. 計算n維圓弧路徑
- 30. 半圓圓弧滾動javascript
我不能把一個完整的圖像就像一面旗幟有風景&人物很好地工作。我想不做也可以使用圖像? – dang