支持超过API 16的库?

时间:2016-05-12 17:54:06

标签: android

我正在开发一个Android应用程序。我的minsdk版本是16,所以我想知道我应该包括

  

com.android.support:appcompat-v7:23.1.1

  

com.android.support:support-v4:23.3.0

在我的申请中。或者什么时候需要这些依赖?

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

1 个答案:

答案 0 :(得分:2)

我认为您不需要,因为您的最低SDK级别为16,支持库适用于旧版本。因此,您需要的所有内容都可以从android.app名称空间访问,而不是支持。如果我可以提出建议,那么转向API 17会给你带来很多好处,特别是关于片段。