Android theme和style的知识汇总

 

android 基础开发:

Android 概述Theme
http://www.eoeandroid.com/thread-102253-1-1.html

android 中系统自带的主题与样式
http://www.eoeandroid.com/thread-103123-1-1.html

深入理解android style theme
http://www.eoeandroid.com/thread-115190-1-1.html

android Style 小结
http://www.eoeandroid.com/thread-99671-1-1.html

Android 在视图显示中使用Style和theme
http://www.eoeandroid.com/thread-84223-1-1.html

Android 风格与主题(一)
http://www.eoeandroid.com/thread-71052-1-1.html

Android 风格与主题(二)
http://www.eoeandroid.com/thread-71055-1-1.html

给TextView的文字加阴影
http://www.eoeandroid.com/thread-152696-1-1.html

android中应用开发中的风格和主题(style、theme)
http://www.eoeandroid.com/thread-148043-1-1.html

自定义Android主题风格theme.xml方法
http://www.eoeandroid.com/thread-39986-1-1.html

Android 风格与主题的区别与应用
http://www.eoeandroid.com/thread-92514-1-1.html

Android 系统自带样式Android:theme
http://www.eoeandroid.com/thread-148515-1-1.ht...

android用户界面之GridView教程实例汇总

发布于 2013-11-19访问(17评论(0

   一、GridView基础知识

  1.在GridView上显示SD卡上的所有图片
  下载地址 http://www.eoeandroid.com/thread-182331-1-1.html

  2.网格(GridView)+图片(ImageView)+文字(TextView)
  下载地址 http://www.eoeandroid.com/thread-182335-1-1.html

  3.Android API中文文档GridView
  下载地址 http://www.eoeandroid.com/thread-182341-1-1.html

  4.Android GridView视图缓存优化
  下载地址 http://www.eoeandroid.com/thread-182344-1-1.html

  5.Android 对GridView探究
  下载地址 http://www.eoeandroid.com/thread-182348-1-1.html

  6.Android学习系列(12)--App列表之拖拽GridView
  下载地址 http://www.eoeandroid.com/thread-182358-1-1.html

  7.Android Gridview网格布局
  下载地址 http://www.eoeandroid.com/thread-182360-1-1.html

  8.Android学习笔记之GridView
  下载地址 http://www.eoeandroid.com/thread-182362-1-1.html

  9.Android GridView视图缓存优化
  下载地址 http://www.eoeandroid.com/thread-182368-1-1.html

  10.Android 网格视图(GridVi...

Fragment

更新于 2013-11-19访问(15评论(0

fragment 基础:
Android Fragment功能的例子
http://www.eoeandroid.com/thread-241053-1-1.html
Fragment的生命周期
http://www.eoeandroid.com/thread-194362-1-1.html
Fragment示例代码
http://www.eoeandroid.com/thread-69175-1-1.html
Android Fragment使用的两种方法
http://www.eoeandroid.com/thread-183916-1-1.html
Android Fragment解析
http://www.eoeandroid.com/thread-71430-1-1.html
Fragment动画效果
http://www.eoeandroid.com/thread-71001-1-1.html
Android Fragment使用详解
http://www.eoeandroid.com/thread-83381-1-1.html
【eoeandroid索引】android fragment知识汇总
http://www.eoeandroid.com/thread-172624-1-1.html

源码:
使用Fragment+TabHost制作选项卡菜单
http://www.eoeandroid.com/thread-205166-1-1.html
ViewPager+Fragment实现QQ界面
http://www.eoeandroid.com/thread-197705-1-1.html
Android Fragment的使用
http://www.eoeandroid.com/thread-195303-1-1.html

问题解决:
Fragment报错(含源码)
http://www.eoeandroid.com/thread-229837-1-1.html
fragment的remove
http://www.eoeandro...

丢失Android系统库或者Conversion to Dalvik format failed with error 1错误的解决

发布于 2013-11-19访问(16评论(0
1
2
3
在eclipse开发Android项目时出现的很多问题都可以使用Project--------->clean来轻易解决。
但如果出现说Android库找不到,或者不小心remove了Android系统库,怎么重新添加Android系统库呢?在eclipse里面的Java Build Path里面是没法添加例如Android 2.1这样定义好的系统库。而我尝试手动添加SDK 文件夹里面的Android.jar,结果出现了Conversion to Dalvik format failed with error 1问题了。折腾了一番后,很多网友都说用Project clean可以解决,但对我的情况来说,没有用处。在百度找到解决方法了:修改项目classpath文件,这让我明白了,直接从其他正常项目里面把
  <classpathentry kind="lib"   path ="自定义jar的地址" />

修改成
。这样子刷新项目,Android系统库Android 2.1回来了,那个错误也解决了。

这几天又遇到这样的问题了,但是.classpath文件里面已经包含了上面的con Path,后来在论坛(http://www.eoeandroid.com/thread-53880-1-1.html)上找到新方法:
project -> prop...

Android 中导入Gson jar包后出现 java.lang.NoClassDefFoundError: com.google.gson.GsonBuilder的解决办法

更新于 2013-11-19访问(14评论(0
  1. Create a new folder named "libs" in your Eclipse/Android workspace project (you can do it in Windows Explorer if you're using Windows OS).
  2. In Eclipse, right-click on the project and choose "refresh", this will refresh your project and add the "libs" folder
  3. Right-click on the "libs" folder, choose Import > General > File System. Click NEXT and then browse in your pc to find the parent folder of the library you want to add (N.B. select the parent folder of the library, not the library.jar) and then click OK
  4. Click the directory name of the library (which is displayed in the left panel) -not the checkbox-
  5. On the right panel will be displayed the list of JAR files in that folder, select the checkbox of the one you want to install and click FINISH (this operation will add the library to your project, now you have to make it available for the project code)
  6. Right-click on your project, choose Build Path > Configure B...

Android设置ImageButton背景透明

发布于 2013-11-19访问(19评论(0

Android设置ImageButton背景透明

只需要设置ImageButton的background的颜色为#00000000

如果设置为半透明背景颜色设置#e0000000

路漫漫其修远兮 吾将上下而求索
原文地址:https://www.cnblogs.com/hudabing/p/3432535.html