android-support-v7-appcompat

只要把values-v14下的styles.xml修改 用在4.0以上的设备

    <!--
        Base application theme for API 14+. This theme completely replaces
        AppBaseTheme from BOTH res/values/styles.xml and
        res/values-v11/styles.xml on API 14+ devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Holo.Light.DarkActionBar">
        <!-- API 14 theme customizations can go here. -->

    </style>

 

把values-v11下的styles.xml修改    3.0以上的设备

<resources>

    <!--
        Base application theme for API 11+. This theme completely replaces
        AppBaseTheme from res/values/styles.xml on API 11+ devices.
    -->
    <style name="AppBaseTheme" parent="android:Theme.Holo.Light">
        <!-- API 11 theme customizations can go here. -->

    </style>

</resources>

  

普通的values下使用

<style name="AppBaseTheme" parent="android:Theme.Light">

  

主题风格去掉导航栏

    <!-- Application theme. -->
    <style name="AppTheme" parent="AppBaseTheme">
        <item name="android:windowNoTitle">true</item>
        <!-- All customizations that are NOT specific to a particular API-level can go here. -->
    </style>

<application
  android:name="com.xinhua.schome.base.App"
  android:allowBackup="true"
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme" >

  

时间: 2024-10-14 05:31:51

android-support-v7-appcompat的相关文章

Android增加v7 appcompat源码

1.File ---- Import---- Existing Android Code Into Workspace 2.选择 <sdk>/extras/android/support/v7/appcompat/导入进来 3.去github上查找,"platform framework support",下载下来后解压,里面包含了v4,v7,v13的源码 4.在我们第2步导入的appcompat项目的libs下建立一个"android-support-v7-ap

在项目中引用android.support.v7

在Android开发中,新建的项目可能因为缺少对sopport工程的引用而报错,可以这样解决. 1.项目右键 --> import --> Android --> Existing Android Code Into workspace --> 选择..\sdk\extras\android\support\v7\appcompat(根据自己的文件存放路径先择) --> 勾选copy projects into workspace --> finish (若出现unab

java.lang.NoSuchFieldError: No static field abc_ic_ab_back_mtrl_am_alpha of type I in class Landroid/support/v7/appcompat/R$drawable

出现java.lang.NoSuchFieldError: No static field abc_ic_ab_back_mtrl_am_alpha of type I in class Landroid/support/v7/appcompat/R$drawable问题, 通过网上查找问题,发现是由于v7包版本不一致,里面的abc_ic_ab_back_mtrl_am_alpha 文件有修改名称导致,所以将build.gradle文件中的依赖文件: compile 'com.android.s

android.support.v7使用,出错处理

android.support.v7使用方法: (1)右键àimportà到sdk\extras\android\support\v7目录中à选择appcompat (2)导入后可能会出错,这时可以在导入的工程上右键àPropertiesàandroid确保project buildtarget中选中的版本和SDK Manager中Android SupportLibrary的版本一致(图中两个红圈). (3)如果还有错误,打开project.properties文件,修改target=andr

android.support.v7.app.AppCompatActivity

1.Android Studio (api 23) 新建项目的时候 Activity public class MainActivity extends AppCompatActivity 2.系统默认样式 <!-- Base application theme. --> <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar"> <!-- Customize

classes could not be found: - android.support.v7.internal.app.WindowDecorActionBar问题的解决方法

转载至----http://my.oschina.net/u/2425146/blog/546649?fromerr=aDYrFDVx.仅作个人收藏使用,有转载的朋友请连续原作者,谢谢 刚刚进入studio 的小伙伴们遇到很多问题吧,这个是我曾经遇到的问题,希望能帮助大家,如果觉的有帮助您记得给个赞哦 Rendering Problems The following classes could not be found: - android.support.v7.internal.app.Win

Eclipse中使用recyclerview时出现Caused by: java.lang.NoClassDefFoundError: android.support.v7.recyclerview.R$styleable

转自: http://blog.csdn.net/chenleicpp/article/details/46848785 程序崩溃,错误提示: Caused by: java.lang.NoClassDefFoundError: android.support.v7.recyclerview.R$styleable 原因: 在eclipse中使用RecyclerView,编译没有问题,但是运行时候会出现如下错误,百思不得其解,又说v4包与v7包版本不一致,有说没有导入v7-compat包的,经反

android.support.v7导入时候报values-v21.xml里面资源文件找不到

今天做android.support:percent 时候需要导入android.support.v7支持,但是我导入的时候怎么都会报错,eclipse和android studio里面都有,我删掉了values-v21.xml,但是代码里面又报错了,整了1天原来是build版本的问题,5.0一下都是没有这个的. 点击你的工程右键-->Properties-->Android 1.查看你引用的appcompat_v7包是否引用正确 2.用较高的api试试 Apply之后对项目Clean一下就O

int android.support.v7.widget.RecyclerView$ViewHolder.mItemViewType&#39; on a null.....

Android.support.v7.widget.RecyclerView$ViewHolder.mItemViewType' on a null..空指针问题,费劲心思才找到报空指针的原因: 代码是这样的,有多种布局类型 @Override public int getItemViewType(int position) { BmobIMMessage message = msgs.get(position); if(message.getMsgType().equals(BmobIMMes

有关android.support.v7.app.ActionBarActivity错误的问题

1 有关android.support.v7.app.ActionBarActivity错误的问题 (1)导入appcompat_v7的项目,设置 Properties->Android->勾选 Is library (2)在出现错误的工程 设置 Properties->Android->add->加入android-support-v7-appcompat.jar库文件,再clean,如果还是不行,执行第三部. (3)在出现错误的工程目录libs加入 android-sup