关于R.styleable的问题_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 关于R.styleable的问题

关于R.styleable的问题

 2013/11/5 16:36:46  域名抢注平台  博客园  我要评论(0)
  • 摘要:原来想直接想调用程序的东西,但是使用R.styleable的时候eclipse不能解析了,后来发现原来被删除了此方法Java代码publicImageAdapter(Contextc){mContext=c;TypedArraya=obtainStyledAttributes(android.R.styleable.Theme);mGalleryItemBackground=a.getResourceId(android.R.styleable
  • 标签:问题

原来想直接想调用程序的东西,但是使用class="Apple-style-span" style="font-family: 'WenQuanYi Micro Hei Mono', 'WenQuanYi Micro Hei', 'Microsoft Yahei Mono', 'Microsoft Yahei', sans-serif !important;">R.styleable的时候 eclipse不能解析了,后来发现原来被删除了此方法

 

Java代码 
  1. public ImageAdapter(Context c) {  
  2.     mContext = c;  
  3.     TypedArray a = obtainStyledAttributes(android.R.styleable.Theme);  
  4.     mGalleryItemBackground = a.getResourceId(  
  5.             android.R.styleable.Theme_galleryItemBackground, 0);  
  6.     a.recycle();  
  7. }  

 这种方法也就不能用了

 

然后

 

monospace, serif; white-space: pre; font-size: 14px; vertical-align: baseline; border-width: 0px; padding: 0px;">publicImageAdapter(Context c){
    mContext = c;
    TypedArray a = c.obtainStyledAttributes(R.styleable.Gallery1);
    mGalleryItemBackground = a.getResourceId(R.styleable.Gallery1_android_galleryItemBackground,0);
    a.recycle();}

 

唯一要做的就是自己去做一个styleable

res\values 

 

<?xml version="1.0" encoding="utf-8"?><resources> 
    <declare-styleablename="Gallery1"> 
        <attrname="android:galleryItemBackground"/> 
    </declare-styleable></resources>
发表评论
用户名: 匿名