Download expansion files on tablet

前端 未结 7 2006
清酒与你
清酒与你 2021-01-28 02:13

I am making an dictionary for android phones and tablets. I have committed the file on my developer account, and i works like a charm on phone. When i am trying to run the exact

7条回答
  •  说谎
    说谎 (楼主)
    2021-01-28 03:11

    @Fuglsang and @android developer's answer works for me, it's perfect...

    static public DownloadNotification.ICustomNotification createCustomNotification()
    {
      try
      {
        final Class notificationBuilderClass = Class.forName("android.app.Notification$Builder");
        notificationBuilderClass.getDeclaredMethod("setProgress", new Class[] {Integer.TYPE, Integer.TYPE, Boolean.TYPE});
        return new V11CustomNotification();
      }
      catch (final Exception e)
      {
        return new V3CustomNotification();
      }
    }
    

提交回复
热议问题