本文共 2869 字,大约阅读时间需要 9 分钟。
android support v7怎么导入源码 注意 是v7的 v4的那一套不管用
........最好有图片流程 截图
更新时间:2019-10-22 11:29
最新回答
1. File ---- Import---- Existing Android Code Into Workspace.
2. 选择
/extras/android/support/v7/appcompat/.
3. 在github上搜索platform_framework_support,下载解压。
4. 在你自己的appcompat项目的libs目录增加android-support-v7-appcompat.jar.properties文件,文件内容为src=你的路径/platform_frameworks_support-master/v7/appcompat/src。
5. close掉v7的project再打开即可。
2014-04-18 回答
相关问答
我也有同样的问题。 为了解决这个问题,我检查了Android支持库的变化并搜索了添加了NestedScrollingChild的版本。 该版本是Android支持库,修订版22。1。0(2015年4月) 知道问题后,请按照下列步骤操作: 从您的项目和工作空间中删除所有支持库(先做代码备份!) 在您的工作区中再次导入您上次修订时使用的支持库(android-support-v7-appcompat) 转到导入的库v7的libs目录并删除 “ android-support-v4.jar ”文件。 右
...
LinearLayout类自API级别1以来存在,但是之后添加了一些API,例如在API级别11上引入了setShowDividers 。 所以在这种情况下,如果要定位API级别低于11的平台,则应使用LinearLayoutCompat而不是LinearLayout调用setShowDividers (并且它的参数)。 The class LinearLayout exists since API level 1, but some APIs were added after that, for
...
您必须扩展AppCompatActivity ,这是片段所必需的,并且包含PreferenceFragmentCompat的子类。 抽象片段需要覆盖一种方法,您应该在其中放置您的偏好通货膨胀逻辑。 最后,您的活动主题需要指定preferenceTheme属性。 阅读这里的公告。 使用preferences-v7库,您可以使用PreferenceFragmentCompat子类替换PreferenceFragment (API 11+),并使用SwitchPreference替换SwitchPref
...
您必须删除里面的文件夹 User/UserName/AppData/Local/Xamarin/Android.Support.v4/ 然后在Visual Studio重新生成。 它会再次下载。 或者,如果您有此错误 警告主要版本52比51更新 访问以下答案: 警告主要版本52比51更新,这是此编译器支持的最高主要版本 You have to delete the Folder inside User/UserName/AppData/Local/Xamarin/Android.Support.v
...
发现CustomActivity必须是ActionBarActivity的子代。 我改变了这个错误消失了。 Happens that it is necessary for the CustomActivity to be child of ActionBarActivity. I changed this and the error disappeared.
API-21弃用了ActionBar 。 API-21上不再提供setSupportProgressBarIndeterminateVisibility() 。 您应该使用ToolBar 。 请参阅: https : //chris.banes.me/2014/10/17/appcompat-v21/ API-21 deprecated ActionBar. The setSupportProgressBarIndeterminateVisibility() is not available an
...
也有这个问题。 是的,我知道我需要使用SDK管理器对话框从extras文件夹下载支持库,按照支持库设置链接 ,但它没有在那里列出 - 只有“支持库”。 问题是它默认是隐藏的,因为它已被弃用。 您需要检查“show:obsolete”复选框。 然后它可以下载。 Also had this problem. Yes, I knew I need to use the SDK Manager dialog to download the support library from the extras f
...
解决方案取决于SearchView的初始状态。如果它已折叠,则必须先打开它: onView(withId(R.id.your_search_menu_id)).perform(click());
然后你可以输入它。 有两种方法: 通过搜索自动完成ID,这是公开的 onView(withId(android.support.design.R.id.search_src_text)).perform(typeText("something"));
通过使用这个事实,它是AutoCompleteTe
...
NotificationCompat v7现已被弃用,您应该使用NotificationCompat v4 (根据NotificationCompat v7类上的意见)。 /**
* @deprecated Use the static classes in {@link android.support.v4.app.NotificationCompat}.
*/
然后你可以建立你的通知(Kotlin): val notificationBuilder = NotificationCompa
...
我认为这是Lint的一个已知问题: http : //code.google.com/p/android/issues/detail ?id = 52831 。 只需将工具:ignore =“MissingPrefix”添加到Gridlayout项:
...
tools:ignore="MissingPrefix">
为了能够使用此命名空间,请确保将其包含在根标记中: xmlns:tools="http://schema
...
转载地址:http://hcevl.baihongyu.com/