2017-03-06 100 views
0

我發現了很多關於imageview中圖像更改與其他圖像的問題,但我有不同的問題。如何在圖像視圖中更改svg圖像的xml源

我必須在xml格式的可繪製文件夾中有兩個svg圖像。 我想在imageview點擊圖像之間切換。就像如果圖像a.xml是那裏然後點擊它應該顯示圖像b.xml,要做到這一點,我必須獲取imageview的當前xml圖像源並將其設置爲另一個。

如何做到這一點?

MainActivity.java:

import android.support.v7.app.AppCompatActivity; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.ImageView; 

public class MainActivity extends AppCompatActivity { 
ImageView iv; 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_main); 

     iv = (ImageView) findViewById(R.id.imageView); 

     iv.setOnClickListener(new View.OnClickListener() { 
      @Override 
      public void onClick(View v) { 

       if(v == iv){ 

        if(/* How to check current current source of imagevie here */ ){ 
/* How to set new xml svg source to imagevie here */ 
        } 

       } 

      } 
     }); 


    } 
} 

XML:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/activity_main" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="#fff" 
    tools:context="com.abcd.MainActivity"> 


    <ImageView 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     app:srcCompat="@android:drawable/alert_dark_frame" 
     android:src="@drawable/a" 
     android:layout_centerHorizontal="true" 

     android:id="@+id/imageView" 
     android:layout_alignParentTop="true" /> 


</FrameLayout> 

drawable folder containing two svg sources

回答

0

想通了部分解決方案,因爲我可以設置新的SVG源的ImageView,但仍然可以」 t電流源:

if(v == iv){ 

       int k = 10; 
       switch (count) { 
        case 1 : 

         iv.setImageResource(R.drawable.a); 
         k = 0 ; 
         break; 
        case 0 : 
         iv.setImageResource(R.drawable.b); 
         k=1 ; 
         break; 
       } 
       count = k ; 

      }