任何想法如何佈置這些,使他們與點擊能夠按鈕形狀左右?Android佈局中的不規則形狀
回答
實現它,設計爲imageviews佈局和添加圖片的每個部分到它,並將選擇繪製改變某些事件
我覺得這種方式,你的圖像的唯一方法能達到你的目的
嘗試
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="New Button"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:id="@+id/button2"
android:layout_alignBottom="@+id/button3" />
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:id="@+id/button3"
android:layout_alignParentTop="true" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:orientation="horizontal">
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:layout_alignBottom="@+id/button3" />
<Button
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="New Button"
android:layout_weight="1"
android:layout_alignParentTop="true" />
</LinearLayout>
</LinearLayout>
</RelativeLayout>
嗨Abhishek,我爲每個部分添加不同的imageview,但現在的問題是不同的屏幕分辨率,所有部分都沒有正確對齊,因爲我使用每個部分的保證金。請給我一個佈局,我怎樣才能在所有類型的屏幕上完整保留這個完整的東西...... – 2015-04-06 11:12:04
我已經使用了按鈕,但是您應該使用圖像瀏覽,使中心圖像在大自然中透明,並儘量保持與角落的中心圖像 – Abhishek 2015-04-06 11:53:43
嗨Abhishek,謝謝你的回答,現在我能夠創建佈局,但這裏的問題是加號和減號按鈕也應該是可點擊的,所以如何添加這些單獨的按鈕和一些元素我' m無法添加點擊事件。 – 2015-04-07 10:27:18
- 1. 如何在Android佈局中佈局不規則形狀
- 2. Android中不規則形狀按鈕佈局的任何示例?
- 3. Android onTouch不規則形狀
- 4. 不規則形狀
- 5. 不規則的佈局ItemsControl
- 6. Android佈局形狀設計
- 7. HTML不規則佈局
- 8. 不規則的矩形形狀
- 9. 佈局劃分爲規則形狀,儘管屏幕高度
- 10. PDF中的不規則形狀區域
- 11. CSS中的不規則形狀
- 12. android使自定義的佈局形狀
- 13. 造型不規則形狀的按鈕
- 14. 不規則形狀內的點
- 15. 不規則形狀的DOM元素
- 16. 不規則的形狀識別opencv
- 17. 形狀不規則的UIBezierPath填充
- 18. 當新形狀在加工時形成不規則形狀
- 19. 帶有不規則圖像的佈局
- 20. android創建自定義形狀佈局
- 21. Android中的圓形佈局
- 22. 如何均勻分佈5個點到不規則形狀上?
- 23. Cocos2d不規則形狀精靈
- 24. 不規則形狀碰撞檢測
- 25. 以不規則形狀裁剪圖像
- 26. Opengl不規則形狀顏色填充
- 27. 創建傾斜/不規則形狀div
- 28. OpenCV不規則形狀質心
- 29. 與圖像碰撞(不規則形狀)
- 30. 可以處理Android上不規則形狀的事件嗎?
你問下面的佈局,或多或少,FO r放射菜單 – 2015-04-02 12:22:46