2016-10-25 52 views
1

在選擇器中我嘗試設置形狀,其他 - 一切正常。 當我更改爲<vector> - 應用程序崩潰。 我可以設置爲ImageViev應用:srcCompat =「@繪製/圖標,一切OK,但如果我設置爲單選按鈕的應用程序:srcCompat =」 @繪製/ icon_selecton和使用項目AppCompat Vector drawable在RadioButton選擇器上墜毀

`<item android:drawable="@drawable/icon_active" android:state_checked="true"/> 
<item android:drawable="@drawable/icon" android:state_checked="false"/>` 

我看到錯誤API19,但在API21上都可以!

崩潰代碼:

`Android.Views.InflateException: Binary XML file line #1: 
Error inflating class android.widget.ToggleButton` 

我用23.4.0.1庫。

Main.axml

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 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:background="@drawable/a2" 
    android:orientation="vertical" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:windowNoTitle="true" 
    android:id="@+id/container"> 
<RadioGroup 
    android:minWidth="25px" 
    android:minHeight="25px" 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:id="@+id/radioGroup1" 
    android:orientation="horizontal" 
    android:gravity="center"> 
    <RadioButton 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/man" 
    android:button="@drawable/woman_selector" 
    android:radius="50dp" 
    android:layout_marginRight="40dp" /> 
    <RadioButton 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:id="@+id/woman" 
    android:button="@drawable/man_selector" 
    android:radius="50dp" 
    android:layout_marginLeft="40dp" /> 
</RadioGroup> 
</LinearLayout> 

woman_selextor.xml

<?xml version="1.0" encoding="utf-8"?> 
<selector xmlns:android="http://schemas.android.com/apk/res/android"> 
<item android:drawable="@drawable/selwoman" android:state_checked="true"/> 
<item android:drawable="@drawable/defwoman" android:state_checked="false"/> 
</selector> 

defwoman.xml(selwoman.xml只有diffirence顏色)

<?xml version="1.0" encoding="UTF-8" ?> 
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item> 
     <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" 
       android:id="@+id/shapeBg"> 
      <solid android:color="#B733C6"/>  
      <size android:width="70dp" android:height="70dp"/> 
     </shape> 
    </item> 
    <item> 
    <vector xmlns:android="http://schemas.android.com/apk/res/android" 
    android:width="70dp" 
    android:height="70dp" 
    android:viewportWidth="70" 
    android:viewportHeight="70"> 
    <path 
     android:fillColor="#ffffff" 
     android:pathData="M43 45l-6 0 0 -5c6,-1 11,-6 11,-13 0,-7 -6,-13 -13,-13 -7,0 -13,6 -13,13 0,7 
5,12 11,13l0 5 -6 0c-2,0 -2,3 0,3l6 0 0 6c0,2 4,2 4,0l0 -6 6 0c2,0 2,-3 
0,-3zm-18 -18c0,-5 5,-10 10,-10 5,0 10,5 10,10 0,5 -5,10 -10,10 -5,0 -10,-5 
-10,-10z" /> 
</vector> 
    </item> 
</layer-list> 

而且支持庫:

Xamarin.Android.Support.Animated.Vector.Drawable.23.4.0.1 Xamarin.Android.Support.v4.23.4.0.1 Xamarin.Android.Support.v7.AppCompat。 23.4.0.1 Xamarin.Android.Support.Vector.Drawable.23.4.0.1

我創造新的應用程序,並重現此錯誤,link to App1.sln archive

在Android 5.1這完美的工作,但墜毀,機上4.4。 如果從可繪製的項目 - 矢量中刪除,形狀工作在4.4,但沒有圖標。

+0

你可以提供完整的axml,其中使用單選按鈕,以便我們可以快速重現此? –

+0

@YuriS,我添加代碼到我的問題,主要,選擇器和矢量繪製。 – Ron

+0

提供該項目的鏈接是巨大的幫助。能夠迅速重現問題 –

回答

0

讓您的活動從AppCompatActivity派生並添加靜態構造函數

[Activity (Label = "App1.Droid", MainLauncher = true, Icon = "@drawable/icon")] 
     public class MainActivity : AppCompatActivity 
     { 

      static MainActivity() 
      { 
       AppCompatDelegate.CompatVectorFromResourcesEnabled = true; 
      } 

      protected override void OnCreate (Bundle bundle) 
      { 

你將不得不改變從程序兼容性衍生清單中的主題。您可以通過項目與繪製

<?xml version="1.0" encoding="UTF-8" ?> 
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"> 
    <item> 
    <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval" 
      android:id="@+id/shapeBg"> 
     <solid android:color="#fff"/> 
     <size android:width="70dp" android:height="70dp"/> 
    </shape> 
    </item> 
    <item android:drawable="@drawable/woman_path"/> 
</layer-list> 

woman_path.xml選擇不同的主題(我喜歡深色)

<application android:label="App1.Droid" android:theme="@style/Theme.AppCompat"></application> 

在選擇與載體的替代產品看起來像你的載體之前

<?xml version="1.0" encoding="UTF-8" ?> 
<vector xmlns:android="http://schemas.android.com/apk/res/android" 
    android:width="70dp" 
    android:height="70dp" 
    android:viewportWidth="70" 
    android:viewportHeight="70"> 
    <path 
     android:fillColor="#ffffff" 
     android:pathData="M43 45l-6 0 0 -5c6,-1 11,-6 11,-13 0,-7 -6,-13 -13,-13 -7,0 -13,6 -13,13 0,7 
5,12 11,13l0 5 -6 0c-2,0 -2,3 0,3l6 0 0 6c0,2 4,2 4,0l0 -6 6 0c2,0 2,-3 
0,-3zm-18 -18c0,-5 5,-10 10,-10 5,0 10,5 10,10 0,5 -5,10 -10,10 -5,0 -10,-5 
-10,-10z" /> 
</vector> 
+0

謝謝!成功了! '靜態MainActivity()' – Ron