2015-04-02 133 views

回答

0

實現它,設計爲imageviews佈局和添加圖片的每個部分到它,並將選擇繪製改變某些事件

我覺得這種方式,你的圖像的唯一方法能達到你的目的enter image description here

嘗試

<?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> 
+0

嗨Abhishek,我爲每個部分添加不同的imageview,但現在的問題是不同的屏幕分辨率,所有部分都沒有正確對齊,因爲我使用每個部分的保證金。請給我一個佈局,我怎樣才能在所有類型的屏幕上完整保留這個完整的東西...... – 2015-04-06 11:12:04

+0

我已經使用了按鈕,但是您應該使用圖像瀏覽,使中心圖像在大自然中透明,並儘量保持與角落的中心圖像 – Abhishek 2015-04-06 11:53:43

+0

嗨Abhishek,謝謝你的回答,現在我能夠創建佈局,但這裏的問題是加號和減號按鈕也應該是可點擊的,所以如何添加這些單獨的按鈕和一些元素我' m無法添加點擊事件。 – 2015-04-07 10:27:18