2016-10-06 54 views
0
<RelativeLayout   
     android:layout_weight="1" 
     android:layout_marginLeft="20dp" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
    <ImageView 
      android:id="@+id/checkimage" 
      android:layout_width="16dp" 
      android:layout_alignParentRight="true" 
      android:layout_marginRight="10dp" 
      android:layout_marginTop="10dp" 
      android:visibility="gone" 
      android:src="@drawable/greentickmark" 
      android:layout_height="16dp" /> 

<LinearLayout 
     android:id="@+id/clicklayout" 
     android:orientation="vertical" 
     android:layout_gravity="center" 
     android:gravity="center" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
    <ImageView 
      android:id="@+id/click" 
      android:layout_gravity="center" 
      android:background="@drawable/background" 
      android:layout_width="60dp" 
      android:layout_height="50dp" /> 
    <TextView 
      android:textStyle="bold" 
      android:textSize="10dp" 
      android:layout_marginTop="4dp" 
      android:textColor="@color/white" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 
</LinearLayout> 
</RelativeLayout> 

按鈕的setBackground顏色和顯示刻度圖像。如果我上點擊ID圖片瀏覽,然後單擊佈局的背景色變,但檢查圖像不visible.How顯示此支票影像及變化背景顏色。如何改變點擊機器人

public void onClick(View v) { checkimage.setVisibility(View.VISIBLE); 

clicklayout.setBackgroundColor(Color.parseColor("#2f0058")); } 
+0

公共無效的onClick(視圖v){ checkimage.setVisibility(View.VISIBLE); clicklayout.setBackgroundColor(Color.parseColor(「#2f0058」)); }無法正常工作。 –

+0

你可以發佈你的java代碼嗎? – AbhayBohra

回答

0
<RelativeLayout   
     android:layout_weight="1" 
     android:layout_marginLeft="20dp" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 

     <LinearLayout 
     android:id="@+id/clicklayout" 
     android:orientation="vertical" 
     android:layout_gravity="center" 
     android:gravity="center" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent"> 
     <ImageView 
      android:id="@+id/click" 
      android:layout_gravity="center" 
      android:background="@drawable/background" 
      android:layout_width="60dp" 
      android:layout_height="50dp" /> 
     <TextView 
      android:textStyle="bold" 
      android:textSize="10dp" 
      android:layout_marginTop="4dp" 
      android:textColor="@color/white" 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" /> 
      </LinearLayout> 

      <ImageView 
      android:id="@+id/checkimage" 
      android:layout_width="16dp" 
      android:layout_alignParentRight="true" 
      android:layout_marginRight="10dp" 
      android:layout_marginTop="10dp" 
      android:visibility="gone" 
      android:src="@drawable/greentickmark" 
      android:layout_height="16dp" /> 
    </RelativeLayout> 

您的線性佈局overlaping的ImageView的所以.. 希望這有助於..

+0

感謝兄弟。問題解決了 –