2016-10-22 108 views
1

它說方法調用需要API級別23.我下面的代碼, enter image description here使用PopupWindow.setWindowLayoutType()API上<23


但是,因爲下面是Android的官方android.widget是不可能的從API級中加入19. enter image description here

另外相關常數TYPE_APPLICATION_SUB_PANEL在API .Editor.java源文件1.此外,我下API成功地用於本上Xamarin 14.

這裏有什麼問題?

回答

0

你安裝了api 23 sdk嗎?您必須從android sdk管理器下載。

+0

我想這個方法在api19目標下工作。 – SadeepDarshana

0

它只是表明setWindowLayoutType方法並不適用於API級別14

你必須添加API級別條件。

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M) 
{ 
    mContainer.setWindowLayoutType(WindowManager.LayoutParams.TYPE_APPLICATION_SUB_PANEL); 
} 
+0

我想要這個方法在api19目標下工作。 – SadeepDarshana

相關問題