1

所以,我们的 Windows Phone 开发人员最近离开了,我主要做 Android 开发。我们从一位客户那里收到了一个关于在 Surface 平板电脑上安装我们的 Windows Phone 8 应用程序的问题。也就是说,有可能吗?就目前而言,我们的 WP8 应用程序没有考虑到平板电脑,所以我的问题是:

我需要对 WP8 应用程序执行什么操作才能将其安装在平板电脑上,(如果它按原样工作(如 Android 应用程序那样),是否有某种标志我必须启用然后重建等? ?)

4

2 回答 2

2

正如@AMR 提到的,最大的挑战将是用户界面;但是,根据所使用的设备功能,“后端”也可能是也可能不是挑战。

Windows Phone 开发中心上有关于为这两个平台构建的实践和技术的很好的指导,因此根据构建手机应用程序的时间以及您以前的开发人员对重叠平台的认识,您可能处于良好状态或一般形状。

此外,以下资源可能有助于将您已经在 Windows Phone 8 中编码的内容映射到您在 Windows 8 中所做的事情:

  1. XAML 控制 Windows Phone 8 和 Windows 8 之间的比较 (也与 Windows Phone 7 相关)

  2. Windows Phone 8 和 Windows 8 平台比较(显示常见的 API、存储、网络等)

  3. 最后,Windows Phone 运行时 API 文档列出了仅在 Phone 8 上的 API 与从 Windows 8 采用的 API。

于 2013-08-02T22:28:36.687 回答
1

Okay well first off yes, there will be a few things that change but nothing to serious.

HOPFULLY you have a good MVVM model. If this is the case then you should be able to just copy and paste 99.999% of your backend code right into your tablet app. There are a few things that are different but its just namespace stuff. Nothing too serious.

The Major change is going to be your UI layout and UI controls. Depending on what libs you are using you will probably have a lot of conflicts.

Your best bet is to just copy and paste your backend code in and then creating a new UI. I have tried to merge phone UIs in the paste into the tablet and its rediculous at times. I found it takes less time to just recreate it.

If you need any help you can hit me up at www.AnthonyRussell.info Maybe I can help with your transfer. Just make sure to leave your contact info.

于 2013-08-02T19:33:03.447 回答