Repository: evilbinary/HighlightTextEditor
Branch: master
Commit: 6ff828a13b68
Files: 217
Total size: 2.1 MB
Directory structure:
gitextract_y53f9gsb/
├── .gitattributes
├── AndroidManifest.xml
├── HighlightTextEditor.iml
├── README.md
├── assets/
│ ├── fib.py
│ ├── highlight.css
│ ├── lib.lisp
│ └── test.html
├── build.gradle
├── gen/
│ ├── android/
│ │ └── support/
│ │ └── v7/
│ │ └── appcompat/
│ │ └── R.java
│ └── org/
│ └── evilbinary/
│ └── highliter/
│ ├── BuildConfig.java
│ └── R.java
├── gradle/
│ └── wrapper/
│ ├── gradle-wrapper.jar
│ └── gradle-wrapper.properties
├── gradlew
├── gradlew.bat
├── jni/
│ ├── Android.mk
│ ├── Application.mk
│ ├── highlight/
│ │ ├── Android.mk
│ │ ├── android/
│ │ │ ├── app.cpp
│ │ │ └── app.h
│ │ ├── cli/
│ │ │ ├── arg_parser.cc
│ │ │ ├── arg_parser.h
│ │ │ ├── cmdlineoptions.cpp
│ │ │ ├── cmdlineoptions.h
│ │ │ ├── help.cpp
│ │ │ ├── help.h
│ │ │ ├── main.cpp
│ │ │ └── main.h
│ │ ├── core/
│ │ │ ├── Diluculum/
│ │ │ │ ├── InternalUtils.cpp
│ │ │ │ ├── InternalUtils.hpp
│ │ │ │ ├── LuaExceptions.cpp
│ │ │ │ ├── LuaFunction.cpp
│ │ │ │ ├── LuaState.cpp
│ │ │ │ ├── LuaUserData.cpp
│ │ │ │ ├── LuaUtils.cpp
│ │ │ │ ├── LuaValue.cpp
│ │ │ │ ├── LuaVariable.cpp
│ │ │ │ └── LuaWrappers.cpp
│ │ │ ├── ansigenerator.cpp
│ │ │ ├── astyle/
│ │ │ │ ├── ASBeautifier.cpp
│ │ │ │ ├── ASEnhancer.cpp
│ │ │ │ ├── ASFormatter.cpp
│ │ │ │ ├── ASResource.cpp
│ │ │ │ └── ASStreamIterator.cpp
│ │ │ ├── bbcodegenerator.cpp
│ │ │ ├── codegenerator.cpp
│ │ │ ├── datadir.cpp
│ │ │ ├── elementstyle.cpp
│ │ │ ├── htmlgenerator.cpp
│ │ │ ├── latexgenerator.cpp
│ │ │ ├── objectgenerator.cpp
│ │ │ ├── odtgenerator.cpp
│ │ │ ├── pangogenerator.cpp
│ │ │ ├── platform_fs.cpp
│ │ │ ├── preformatter.cpp
│ │ │ ├── rtfgenerator.cpp
│ │ │ ├── stringtools.cpp
│ │ │ ├── stylecolour.cpp
│ │ │ ├── svggenerator.cpp
│ │ │ ├── syntaxreader.cpp
│ │ │ ├── texgenerator.cpp
│ │ │ ├── themereader.cpp
│ │ │ ├── xhtmlgenerator.cpp
│ │ │ └── xterm256generator.cpp
│ │ ├── gui-qt/
│ │ │ ├── highlight-gui.qrc
│ │ │ ├── highlight.pro
│ │ │ ├── highlight.xpm
│ │ │ ├── highlight_cs_CZ.ts
│ │ │ ├── highlight_de_DE.ts
│ │ │ ├── highlight_es_ES.ts
│ │ │ ├── highlight_zh_CN.ts
│ │ │ ├── io_report.cpp
│ │ │ ├── io_report.h
│ │ │ ├── io_report.ui
│ │ │ ├── main.cpp
│ │ │ ├── mainwindow.cpp
│ │ │ ├── mainwindow.h
│ │ │ ├── mainwindow.ui
│ │ │ ├── precomp.h
│ │ │ ├── showtextfile.cpp
│ │ │ ├── showtextfile.h
│ │ │ └── showtextfile.ui
│ │ ├── include/
│ │ │ ├── Diluculum/
│ │ │ │ ├── CppObject.hpp
│ │ │ │ ├── LuaExceptions.hpp
│ │ │ │ ├── LuaFunction.hpp
│ │ │ │ ├── LuaState.hpp
│ │ │ │ ├── LuaUserData.hpp
│ │ │ │ ├── LuaUtils.hpp
│ │ │ │ ├── LuaValue.hpp
│ │ │ │ ├── LuaVariable.hpp
│ │ │ │ ├── LuaWrappers.hpp
│ │ │ │ └── Types.hpp
│ │ │ ├── ansigenerator.h
│ │ │ ├── astyle/
│ │ │ │ ├── ASStreamIterator.h
│ │ │ │ └── astyle.h
│ │ │ ├── bbcodegenerator.h
│ │ │ ├── charcodes.h
│ │ │ ├── codegenerator.h
│ │ │ ├── datadir.h
│ │ │ ├── elementstyle.h
│ │ │ ├── enums.h
│ │ │ ├── htmlgenerator.h
│ │ │ ├── latexgenerator.h
│ │ │ ├── objectgenerator.h
│ │ │ ├── odtgenerator.h
│ │ │ ├── pangogenerator.h
│ │ │ ├── platform_fs.h
│ │ │ ├── preformatter.h
│ │ │ ├── rtfgenerator.h
│ │ │ ├── stringtools.h
│ │ │ ├── stylecolour.h
│ │ │ ├── svggenerator.h
│ │ │ ├── syntaxreader.h
│ │ │ ├── texgenerator.h
│ │ │ ├── themereader.h
│ │ │ ├── version.h
│ │ │ ├── xhtmlgenerator.h
│ │ │ └── xterm256generator.h
│ │ └── makefile
│ └── lua/
│ ├── Android.mk
│ ├── lapi.c
│ ├── lapi.h
│ ├── lauxlib.c
│ ├── lauxlib.h
│ ├── lbaselib.c
│ ├── lcode.c
│ ├── lcode.h
│ ├── ldblib.c
│ ├── ldebug.c
│ ├── ldebug.h
│ ├── ldo.c
│ ├── ldo.h
│ ├── ldump.c
│ ├── lfunc.c
│ ├── lfunc.h
│ ├── lgc.c
│ ├── lgc.h
│ ├── linit.c
│ ├── liolib.c
│ ├── llex.c
│ ├── llex.h
│ ├── llimits.h
│ ├── lmathlib.c
│ ├── lmem.c
│ ├── lmem.h
│ ├── loadlib.c
│ ├── lobject.c
│ ├── lobject.h
│ ├── lopcodes.c
│ ├── lopcodes.h
│ ├── loslib.c
│ ├── lparser.c
│ ├── lparser.h
│ ├── lstate.c
│ ├── lstate.h
│ ├── lstring.c
│ ├── lstring.h
│ ├── lstrlib.c
│ ├── ltable.c
│ ├── ltable.h
│ ├── ltablib.c
│ ├── ltm.c
│ ├── ltm.h
│ ├── lua.h
│ ├── lua.hpp
│ ├── luaconf.h
│ ├── lualib.h
│ ├── lundump.c
│ ├── lundump.h
│ ├── lvm.c
│ ├── lvm.h
│ ├── lzio.c
│ └── lzio.h
├── libs/
│ ├── cssparser-0.9.17.jar
│ ├── hotsax.jar
│ ├── sac-1.3.jar
│ ├── tagsoup-1.2.1.jar
│ └── w3c.jar
├── lint.xml
├── local.properties
├── proguard-project.txt
├── project.properties
├── res/
│ ├── layout/
│ │ ├── about.xml
│ │ └── activity_main.xml
│ ├── menu/
│ │ ├── main.xml
│ │ └── mymenu.xml
│ ├── values/
│ │ ├── dimens.xml
│ │ ├── strings.xml
│ │ └── styles.xml
│ ├── values-v11/
│ │ └── styles.xml
│ ├── values-v14/
│ │ └── styles.xml
│ └── values-w820dp/
│ └── dimens.xml
└── src/
└── org/
└── evilbinary/
├── app/
│ └── MainActivity.java
├── highliter/
│ ├── CodeTextWatcher.java
│ ├── Constants.java
│ ├── HighlightEditText.java
│ ├── parsers/
│ │ ├── MyTagToSpannedConverter.java
│ │ ├── SyntaxHighlight.java
│ │ └── Token.java
│ └── spans/
│ ├── ImageClickableSpan.java
│ ├── SafeURLSpan.java
│ ├── SpanStyle.java
│ ├── VideoClickableSpan.java
│ └── VideoSpan.java
├── managers/
│ ├── Configure.java
│ ├── ConfigureManager.java
│ ├── EmoticonsManager.java
│ └── Settings.java
└── utils/
├── BlockFile.java
├── DirUtil.java
├── FileUtil.java
├── IoUtils.java
├── Logger.java
├── PxAndDp.java
├── RichTextUtils.java
└── ZipUtil.java
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
* linguist-language=Java
================================================
FILE: AndroidManifest.xml
================================================
# 历史记录
* a199ea2 - (HEAD, origin/master, master) 图片宽度修改 (evilbinary)
* 046d56e - 高亮基本版本完成 (evilbinary)
* 3bfce62 - 修复0,0位置文字获取不全问题 (evilbinary)
* d51e13a - 增加语法解析后端 (evilbinary)
* d6acd76 - 修改大小 (evilbinary)
* a1d48bb - modify pic (evilbinary)
* 65cbc6a - 修改图片大小 (evilbinary)
* f90e1d5 - 代码截图 (evilbinary)
* 43b466e - 增加显示行数 (evilbinary)
* 7a766af - 移动文件,重新定义 (evilbinary)
* 62c7078 - 增加css外部加载样式功能 (evilbinary)
* d48d344 - 去除标题显示 (evilbinary)
* 3a6a782 - 增加解析支持 (evilbinary)
* b198bdd - modify readme (evilbinary)
* ef7d5c6 - Create README.md (evilbinary)
* 95f3a12 - first version (evilbinary)
# Todo
* 代码渲染基本功能。 [完成]
* 支持200多种语言。 [完成]
* 支持82种配色主题。 [完成]
* 支持lua扩展语法高亮检测。 [基本完成]
* 若干bug修复。
* 主题语言更换功能。
* 字体大小样式功能。
* 表情功能。(待定)
# 项目捐赠

# 作者
* evilbinary rootdebug@163.com
* 个人博客 [http://evilbinary.org](http://evilbinary.org)
# 项目主页
* [https://github.com/evilbinary/HighlightTextEditor](https://github.com/evilbinary/HighlightTextEditor)
# License
Copyright 2016 evilbinary
/* Copyright (C) 2015 evilbinary. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/. */
================================================
FILE: assets/fib.py
================================================
#!/usr/bin/env python
fibs = {0: 0, 1: 1}
def fib(n):
if n in fibs: return fibs[n]
if n % 2 == 0:
fibs[n] = ((2 * fib((n / 2) - 1)) + fib(n / 2)) * fib(n / 2)
return fibs[n]
else:
fibs[n] = (fib((n - 1) / 2) ** 2) + (fib((n+1) / 2) ** 2)
return fibs[n]
print ("fib(234) = %i" % fib(234))
================================================
FILE: assets/highlight.css
================================================
/* Style definition file generated by highlight 3.23, http://www.andre-simon.de/ */
/* Highlighting theme: vim molokai */
body.hl { background-color:#272822; }
pre.hl { color:#f8f8f2; background-color:#272822; font-size:10pt; font-family:'Courier New',monospace;}
.hl.num { color:#ae81ff; }
.hl.esc { color:#66d9ef; font-style:italic; }
.hl.str { color:#e6db74; }
.hl.pps { color:#e6db74; }
.hl.slc { color:#75715e; }
.hl.com { color:#75715e; }
.hl.ppc { color:#defa25; }
.hl.opt { color:#f8f8f2; }
.hl.ipl { color:#66d9ef; font-style:italic; }
.hl.lin { color:#75715e; }
.hl.kwa { color:#f92672; font-weight:bold; }
.hl.kwb { color:#66d9ef; }
.hl.kwc { color:#95f067; }
.hl.kwd { color:#25faac; }
================================================
FILE: assets/lib.lisp
================================================
;;sys
(define (find-proc name)
(if (procedure? name)
name
(sys:find name (sys:top-env))))
(define (proc-name proc)
(if (procedure? proc)
(sys:lookup-var proc (sys:top-env))
proc))
(define (update-proc name proc)
(sys:update name proc (sys:top-env)))
;;add1 sub1
(define (add1 n)
(+ n 1))
(define (sub1 n)
(- n 1))
;(define (zero? n)
;(= 0 n))
(define (atom? x) (not (pair? x)))
;(define (map fn l)
;(if (pair? l)
;(cons (fn (car l)) (map fn (cdr l)))
;'()))
;;list helper functions
(define (caar x) (car (car x)))
(define (cadr x) (car (cdr x)))
(define (cddr x) (cdr (cdr x)))
(define (cdar x) (cdr (car x)))
(define (caaar x) (car (car (car x))))
(define (caadr x) (car (car (cdr x))))
(define (cadar x) (car (cdr (car x))))
(define (caddr x) (car (cdr (cdr x))))
(define (cdaar x) (cdr (car (car x))))
(define (cdadr x) (cdr (car (cdr x))))
(define (cddar x) (cdr (cdr (car x))))
(define (cdddr x) (cdr (cdr (cdr x))))
(define (caaaar x) (car (car (car (car x)))))
(define (caaadr x) (car (car (car (cdr x)))))
(define (caadar x) (car (car (cdr (car x)))))
(define (caaddr x) (car (car (cdr (cdr x)))))
(define (cadaar x) (car (cdr (car (car x)))))
(define (cadadr x) (car (cdr (car (cdr x)))))
(define (caddar x) (car (cdr (cdr (car x)))))
(define (cadddr x) (car (cdr (cdr (cdr x)))))
(define (cdaaar x) (cdr (car (car (car x)))))
(define (cdaadr x) (cdr (car (car (cdr x)))))
(define (cdadar x) (cdr (car (cdr (car x)))))
(define (cdaddr x) (cdr (car (cdr (cdr x)))))
(define (cddaar x) (cdr (cdr (car (car x)))))
(define (cddadr x) (cdr (cdr (car (cdr x)))))
(define (cdddar x) (cdr (cdr (cdr (car x)))))
(define (cddddr x) (cdr (cdr (cdr (cdr x)))))
;;empty?
(define (empty? lst) (eq? lst nil))
;max min
(define max
(lambda (x y)
(if (> x y) x y)))
(define min
(lambda (x y)
(if (< x y) x y)))
;;factorial
(define (factorial n)
(if (= n 1)
1(* n (factorial (- n 1)))))
;;abs
(define (abs x)
(cond ((< x 0) (- x))
(else x)))
;;<=
(define (<= x y)
(or (< x y) (= x y)))
;;>=
(define (>= x y)
(or (> x y) (= x y)))
;;map
(define (map proc items)
(if (null? items)
nil
(cons (proc (car items))
(map proc (cdr items)))))
;(map abs '( -10 2.5 -11.6 17))
;(map (lambda (n) (* 2 n)) '(1 2 3 4 5 6))
;(map zero? '(1 0 3 0 6))
;nil '()
(define nil '())
;exp
;; Linear recursion
(define (expt b n)
(if (= n 0)
1
(* b (expt b (- n 1)))))
;; Linear iteration
(define (expt b n)
(expt-iter b n 1))
(define (expt-iter b counter product)
(if (= counter 0)
product
(expt-iter b
(- counter 1)
(* b product))))
;(expt 2.1 10)
;;;list fun
(define list
(lambda values values) )
;(define (list . objs) objs)
;(list 'd 'a 1 'ee '(a b c d))
;(list 3 4 'a (car '(b . c)) (+ 6 -2))
;(list (list 1 2) (list 3 4))
;;append ok
(define (append x y)
(if (null? x) y
;(not (pair? x)) (display "first arg must pair")
(cons (car x) (append (cdr x) y))))
;(trace 'append)
;(trace 'null?)
;(append '(a b c d e) 'b )
;(append 'a 'b)
;;length
(define length
(lambda (l)
(if (null? l)
0
(+ 1 (length (cdr l))))))
;;reverse
(define reverse
(lambda (l)
(if (null? l)
nil
(append (reverse (cdr l)) (list (car l))))))
;(define (reverse l)
; (define (iter in out)
; (if (pair? in)
; (iter (cdr in) (cons (car in) out))
; out))
; (iter l '()))
;(trace 'null?)
;(trace 'reverse)
;(trace 'list)
;(reverse '())
;(trace 'append)
;(reverse '(1 3 5 9 11))
(define (id obj) obj)
;;eqv?
(define eqv? eq?)
;===================trace================
;;trace
(define trace-display
display)
(define (print-level indent char)
(if (< indent 1) (trace-display "")
(begin
(trace-display char)
(print-level (- indent 1) char))))
;(print-level 10 "--")
;(define nil '())
(define *trace-functions* '())
(define *trace-level* 1)
(define *trace-state* 0)
(define (find-trace-function name functions)
(if (null? functions)
'()
(if (eq? (caar functions) name)
(cdar functions)
(find-trace-function name (cdr functions)))))
(define (trace-invoke proc args)
; (display args)
; (display (length args))
; (proc (car args) ))
(apply proc args))
;(cond ((<= 1 (length args))
; (proc (car args) ))
; ((= 2 (length args))
; (proc (car args) (cadr args)))
; ((= 3 (length args))
; (proc (car args) (cadr args) (caddr args)))
; ((>= 4 (length args))
; (proc (car args) (cadr args) (caddr args) (cadddr args)))))
(define (trace name)
(let ((proc (find-proc name))
(new-proc nil )
(proc-name (proc-name name))
(result nil))
;(display "proc=name:")
;(display proc-name)
;(newline)
(if (eq? 'trace-display proc-name)
(set! proc-name 'display))
; (display proc-name)
(set! new-proc (lambda x
(begin
(print-level *trace-level* "-")
(trace-display proc-name)
(trace-display x)
;(map (lambda (a) (display a) (newline) )x)
(trace-display "\n")
(set! *trace-level* (+ *trace-level* 1))
;(set! result (proc (car x) (car (cdr x)) ))
(set! result (trace-invoke proc x ))
(set! *trace-level* (- *trace-level* 1))
(print-level *trace-level* "-")
(trace-display result)
(trace-display "\n")
result)) )
;(display (cons proc new-proc))
(update-proc proc-name new-proc)))
;set sys-log level
;(sys:set-log-level 7);for debug log
;;list*
(define (list* . args)
(if (pair? args)
(if (pair? (cdr args))
(cons (car args) (apply list* (cdr args)))
(car args) )
(quote ()) ) )
;;last-pair
(define (last-pair l)
(if (pair? l)
(if (pair? (cdr l))
(last-pair (cdr l))
l )
(error 'last-pair l) ) )
;;reverse!
(define (reverse! l)
(define (nreverse l r)
(if (pair? l)
(let ((cdrl (cdr l)))
(set-cdr! l r)
(nreverse cdrl l) )
r ) )
(nreverse l '()) )
;;list-length
(define list-length
(lambda (lst)
(if (null? lst)
0
(+ 1 (list-length (cdr lst))))))
;;nth-element
(define nth-element
(lambda (lst n)
(if (null? lst)
(erro "report-list-too-short" n)
(if (zero? n)
(car lst)
(nth-element (cdr lst) (- n 1))))))
;;remove-first
(define remove-first
(lambda (s los)
(if (null? los)
'()
(if (eqv? (car los) s)
(cdr los)
(cons (car los) (remove-first s (cdr los)))))))
;;occurs-free?
(define occurs-free?
(lambda (var exp)
(cond
((symbol? exp) (eqv? var exp))
((eqv? (car exp) 'lambda)
(and
(not (eqv? var (car (cadr exp))))
(occurs-free? var (caddr exp))))
(else (or
(occurs-free? var (car exp))
(occurs-free? var (cadr exp)))))))
;;subst
(define subst
(lambda (new old slist)
(if (null? slist)
'() (cons
(subst-in-s-exp new old (car slist))
(subst new old (cdr slist))))))
(define subst-in-s-exp
(lambda (new old sexp)
(if (symbol? sexp)
(if (eqv? sexp old) new sexp)
(subst new old sexp))))
;;remainder
(define (remainder n d)
(if (< n d)
n
(remainder (- n d) d)))
;;gcd
(define (gcd a b)
(if (= b 0)
a
(gcd b (remainder a b))))
;;list-ref
(define (list-ref items n)
(if (= n 0)
(car items)
(list-ref (cdr items) (- n 1))))
================================================
FILE: assets/test.html
================================================
/*************************************************************************** codegenerator.cpp - description ------------------- begin : Die Jul 9 2002 copyright : (C) 2002-2012 by Andre Simon email : andre.simon1@gmx.de ***************************************************************************/ /* This file is part of Highlight. Highlight is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Highlight is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with Highlight. If not, see <http://www.gnu.org/licenses/>. */ #include <climits> #include <memory> #include <boost/xpressive/xpressive_dynamic.hpp> #include "codegenerator.h" #include "htmlgenerator.h" #include "xhtmlgenerator.h" #include "rtfgenerator.h" #include "latexgenerator.h" #include "texgenerator.h" #include "svggenerator.h" #include "bbcodegenerator.h" #include "pangogenerator.h" #include "odtgenerator.h" #include "astyle/astyle.h" #include "astyle/ASStreamIterator.h" #include "mygenerator.h" #if !defined (QT) #include "ansigenerator.h" #include "xterm256generator.h" #endif using namespace std; namespace highlight { const unsigned int CodeGenerator::NUMBER_BUILTIN_STATES = highlight::KEYWORD; const string CodeGenerator::STY_NAME_STD="std"; const string CodeGenerator::STY_NAME_STR="str"; const string CodeGenerator::STY_NAME_NUM="num"; const string CodeGenerator::STY_NAME_SLC="slc"; const string CodeGenerator::STY_NAME_COM="com"; const string CodeGenerator::STY_NAME_ESC="esc"; const string CodeGenerator::STY_NAME_DIR="ppc"; //preprocessor const string CodeGenerator::STY_NAME_DST="pps"; //preprocessor string const string CodeGenerator::STY_NAME_LIN="lin"; const string CodeGenerator::STY_NAME_SYM="opt"; //operator const string CodeGenerator::STY_NAME_IPL="ipl"; //interpolation CodeGenerator * CodeGenerator::getInstance ( OutputType type ) { CodeGenerator* generator=NULL; switch ( type ) { case HTML: generator = new HtmlGenerator(); break; case XHTML: generator = new XHtmlGenerator(); break; case TEX: generator = new TexGenerator (); break; case LATEX: generator = new LatexGenerator(); break; case RTF: generator = new RtfGenerator (); break; case SVG: generator = new SVGGenerator(); break; case BBCODE: generator = new BBCodeGenerator(); break; case PANGO: generator = new PangoGenerator(); break; case ODTFLAT: generator = new ODTGenerator(); break; #if !defined (QT) case ANSI: generator = new AnsiGenerator(); break; case XTERM256: generator = new Xterm256Generator(); break; case MY: generator = new MyGenerator(); break; #endif default: break; } return generator; } CodeGenerator::CodeGenerator ( highlight::OutputType type ) :currentSyntax(NULL), in ( NULL ), out ( NULL ), encoding ( "none" ), docTitle ( "Source file" ), maskWs ( false ), excludeWs ( false ), fragmentOutput ( false ), showLineNumbers ( false ), lineNumberFillZeroes ( false ), printNewLines(true), baseFontSize("10"), lineNumber ( 0 ), lineNumberOffset ( 0 ), includeStyleDef ( false ), lineIndex ( 0 ), lineNumberWidth ( 5 ), maxLineCnt ( UINT_MAX ), terminatingChar ( '\0' ), formatter ( NULL ), formattingEnabled ( false ), formattingPossible ( false ), validateInput ( false ), numberWrappedLines ( true ), //until now, wrapped lines were always numbered, so this remains the default. noTrailingNewLine(false), resultOfHook(false), keywordCase ( StringTools::CASE_UNCHANGED ), eolDelimiter ('\n'), outputType ( type ) { } CodeGenerator::~CodeGenerator() { delete formatter; for ( map<string, SyntaxReader*>::iterator it=syntaxReaders.begin(); it!=syntaxReaders.end(); it++ ) { delete it->second; } } bool CodeGenerator::initTheme ( const string& themePath ) { this->themePath=themePath; bool loadOK = docStyle.load ( themePath, outputType ); initOutputTags(); return loadOK; } const string& CodeGenerator::getStyleName() { return themePath; } void CodeGenerator::setLineNumberWidth ( int w ) { lineNumberWidth=w; } int CodeGenerator::getLineNumberWidth() { return lineNumberWidth; } void CodeGenerator::setPrintLineNumbers ( bool flag, unsigned int startCnt ) { showLineNumbers=flag; lineNumberOffset = startCnt-1; } bool CodeGenerator::getPrintLineNumbers() { return showLineNumbers; } void CodeGenerator::setPrintZeroes ( bool flag ) { lineNumberFillZeroes=flag; } bool CodeGenerator::getPrintZeroes() { return lineNumberFillZeroes; } void CodeGenerator::setIncludeStyle ( bool flag ) { includeStyleDef = flag; } void CodeGenerator::disableTrailingNL ( bool flag ) { noTrailingNewLine = flag; } void CodeGenerator::setStyleInputPath ( const string& path ) { styleInputPath = path; } void CodeGenerator::setStyleOutputPath ( const string& path ) { styleOutputPath = path; } void CodeGenerator::setPluginReadFile ( const string& path ) { pluginReadFile = path; } const string& CodeGenerator::getStyleInputPath() { return styleInputPath; } const string& CodeGenerator::getStyleOutputPath() { return styleOutputPath; } void CodeGenerator::setFragmentCode ( bool flag ) { fragmentOutput=flag; } bool CodeGenerator::getFragmentCode() { return fragmentOutput; } void CodeGenerator::setValidateInput ( bool flag ) { validateInput=flag; } bool CodeGenerator::getValidateInput() { return validateInput; } void CodeGenerator::setNumberWrappedLines ( bool flag ) { numberWrappedLines=flag; } bool CodeGenerator::getNumberWrappedLines() { return numberWrappedLines; } void CodeGenerator::setBaseFont ( const string& s ) { baseFont = s; } void CodeGenerator::setBaseFontSize ( const string& s ) { baseFontSize = s ; } void CodeGenerator::setStartingNestedLang(const string &langName) { embedLangStart = langName; } const string CodeGenerator::getBaseFont() const { if ( !baseFont.empty() ) return baseFont; switch ( outputType ) { case HTML: case XHTML: return "'Courier New',monospace"; break; case LATEX: return "ttfamily"; break; case TEX: return "tt"; break; case ODTFLAT: return "FreeMono"; break; default: return "Courier New"; } } const string CodeGenerator::getBaseFontSize() { return baseFontSize; } void CodeGenerator::setTitle ( const string & title ) { if ( !title.empty() ) docTitle= title; } string CodeGenerator::getTitle() { return docTitle; } void CodeGenerator::setEncoding ( const string& encodingName ) { encoding = encodingName; } bool CodeGenerator::formattingDisabled() { return !formattingEnabled; } void CodeGenerator::setMaxInputLineCnt ( unsigned int cnt ) { maxLineCnt = cnt; } bool CodeGenerator::formattingIsPossible() { return formattingPossible; } void CodeGenerator::setPreformatting ( WrapMode lineWrappingStyle, unsigned int lineLength, int numberSpaces ) { bool enableWrap = lineWrappingStyle!=WRAP_DISABLED; bool replaceTabs = numberSpaces > 0; if ( enableWrap || replaceTabs ) { preFormatter.setWrap ( enableWrap ); preFormatter.setWrapIndentBraces ( lineWrappingStyle==WRAP_DEFAULT ); preFormatter.setWrapLineLength ( lineLength ); preFormatter.setReplaceTabs ( replaceTabs ); preFormatter.setNumberSpaces ( numberSpaces ); } } void CodeGenerator::setKeyWordCase ( StringTools::KeywordCase keyCase ) { keywordCase = keyCase; } void CodeGenerator::setEOLDelimiter(char delim) { eolDelimiter = delim; } void CodeGenerator::reset() { lineIndex = 0; lineNumber = 0; line.clear(); preFormatter.reset(); inFile.clear(); outFile.clear(); hostLangDefPath.clear(); embedLangDefPath.clear(); printNewLines=true; }================================================ FILE: build.gradle ================================================ import org.apache.tools.ant.taskdefs.condition.Os apply plugin: 'com.android.application' dependencies { compile fileTree(dir: 'libs', include: '*.jar') compile 'com.android.support:appcompat-v7:20.0+' } android { compileSdkVersion 14 buildToolsVersion '20.0.0' sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] resources.srcDirs = ['src'] aidl.srcDirs = ['src'] renderscript.srcDirs = ['src'] res.srcDirs = ['res'] assets.srcDirs = ['assets'] jniLibs.srcDir 'libs' jni.srcDirs = [] } // Move the tests to tests/java, tests/res, etc... instrumentTest.setRoot('tests') // Move the build types to build-types/
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarDivider=0x7f01000f;
/** Custom item state list drawable background for action bar items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarItemBackground=0x7f010010;
/** Size of the Action Bar, including the contextual
bar used to present Action Modes.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int actionBarSize=0x7f01000e;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarSplitStyle=0x7f01000c;
/** Reference to a style for the Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarStyle=0x7f01000b;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTabBarStyle=0x7f010008;
/** Default style for tabs within an action bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTabStyle=0x7f010007;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarTabTextStyle=0x7f010009;
/** Reference to a theme that should be used to inflate widgets
and layouts destined for the action bar. Most of the time
this will be a reference to the current theme, but when
the action bar has a significantly different contrast
profile than the rest of the activity the difference
can become important. If this is set to @null the current
theme will be used.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionBarWidgetTheme=0x7f01000d;
/** Default action button style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionButtonStyle=0x7f010016;
/** Default ActionBar dropdown style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionDropDownStyle=0x7f010047;
/** An optional layout to be used as an action view.
See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionLayout=0x7f01004e;
/** TextAppearance style that will be applied to text that
appears within action menu items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionMenuTextAppearance=0x7f010011;
/** Color for text that appears within action menu items.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int actionMenuTextColor=0x7f010012;
/** Background drawable to use for action mode UI
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeBackground=0x7f01003c;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCloseButtonStyle=0x7f01003b;
/** Drawable to use for the close action mode button
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCloseDrawable=0x7f01003e;
/** Drawable to use for the Copy action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCopyDrawable=0x7f010040;
/** Drawable to use for the Cut action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeCutDrawable=0x7f01003f;
/** Drawable to use for the Find action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeFindDrawable=0x7f010044;
/** Drawable to use for the Paste action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModePasteDrawable=0x7f010041;
/** PopupWindow style to use for action modes when showing as a window overlay.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModePopupWindowStyle=0x7f010046;
/** Drawable to use for the Select all action button in Contextual Action Bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeSelectAllDrawable=0x7f010042;
/** Drawable to use for the Share action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeShareDrawable=0x7f010043;
/** Background drawable to use for action mode UI in the lower split bar
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeSplitBackground=0x7f01003d;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeStyle=0x7f01003a;
/** Drawable to use for the Web Search action button in WebView selection action modes
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionModeWebSearchDrawable=0x7f010045;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int actionOverflowButtonStyle=0x7f01000a;
/** The name of an optional ActionProvider class to instantiate an action view
and perform operations such as default action for that menu item.
See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)}
for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int actionProviderClass=0x7f010050;
/** The name of an optional View class to instantiate and use as an
action view. See {@link android.view.MenuItem#setActionView(android.view.View)}
for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int actionViewClass=0x7f01004f;
/** Default ActivityChooserView style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int activityChooserViewStyle=0x7f01006c;
/** Specifies a background drawable for the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int background=0x7f01002f;
/** Specifies a background drawable for the bottom component of a split action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int backgroundSplit=0x7f010031;
/** Specifies a background drawable for a second stacked row of the action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int backgroundStacked=0x7f010030;
/** A style that may be applied to Buttons placed within a
LinearLayout with the style buttonBarStyle to form a button bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarButtonStyle=0x7f010018;
/** A style that may be applied to horizontal LinearLayouts
to form a button bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int buttonBarStyle=0x7f010017;
/** Specifies a layout for custom navigation. Overrides navigationMode.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int customNavigationLayout=0x7f010032;
/** Whether this spinner should mark child views as enabled/disabled when
the spinner itself is enabled/disabled.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int disableChildrenWhenDisabled=0x7f010054;
/** Options affecting how the action bar is displayed.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int divider=0x7f01002e;
/** A drawable that may be used as a horizontal divider between visual elements.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dividerHorizontal=0x7f01001b;
/** Size of padding on either end of a divider.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int dividerPadding=0x7f010056;
/** A drawable that may be used as a vertical divider between visual elements.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dividerVertical=0x7f01001a;
/** ListPopupWindow comaptibility
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int dropDownListViewStyle=0x7f010021;
/** The preferred item height for dropdown lists.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int dropdownListPreferredItemHeight=0x7f010048;
/** The drawable to show in the button for expanding the activities overflow popup.
Note: Clients would like to set this drawable
as a clue about the action the chosen activity will perform. For
example, if share activity is to be chosen the drawable should
give a clue that sharing is to be performed.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int expandActivityOverflowButtonDrawable=0x7f01006b;
/**
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int height=0x7f010026;
/** Specifies a drawable to use for the 'home as up' indicator.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int homeAsUpIndicator=0x7f010013;
/** Specifies a layout to use for the "home" section of the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int homeLayout=0x7f010033;
/** Specifies the drawable used for the application icon.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int icon=0x7f01002c;
/** The default state of the SearchView. If true, it will be iconified when not in
use and expanded when clicked.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int iconifiedByDefault=0x7f01005a;
/** Specifies a style resource to use for an indeterminate progress spinner.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int indeterminateProgressStyle=0x7f010035;
/** The maximal number of items initially shown in the activity list.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int initialActivityCount=0x7f01006a;
/** Specifies whether the theme is light, otherwise it is dark.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int isLightTheme=0x7f010059;
/** Specifies padding that should be applied to the left and right sides of
system-provided items in the bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int itemPadding=0x7f010037;
/** Drawable used as a background for selected list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listChoiceBackgroundIndicator=0x7f01004c;
/**
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int listPopupWindowStyle=0x7f010022;
/** The preferred list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemHeight=0x7f01001c;
/** A larger, more robust list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemHeightLarge=0x7f01001e;
/** A smaller, sleeker list item height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemHeightSmall=0x7f01001d;
/** The preferred padding along the left edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemPaddingLeft=0x7f01001f;
/** The preferred padding along the right edge of list items.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int listPreferredItemPaddingRight=0x7f010020;
/** Specifies the drawable used for the application logo.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int logo=0x7f01002d;
/** The type of navigation to use.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int paddingEnd=0x7f010039;
/** Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int paddingStart=0x7f010038;
/** Default Panel Menu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int panelMenuListTheme=0x7f01004b;
/** Default Panel Menu width.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int panelMenuListWidth=0x7f01004a;
/** Default PopupMenu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int popupMenuStyle=0x7f010049;
/** Reference to a layout to use for displaying a prompt in the dropdown for
spinnerMode="dropdown". This layout must contain a TextView with the id
{@code @android:id/text1} to be populated with the prompt text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int popupPromptView=0x7f010053;
/** Specifies the horizontal padding on either end for an embedded progress bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int progressBarPadding=0x7f010036;
/** Specifies a style resource to use for an embedded progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int progressBarStyle=0x7f010034;
/** The prompt to display when the spinner's dialog is shown.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int prompt=0x7f010051;
/** An optional query hint string to be displayed in the empty query field.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int queryHint=0x7f01005b;
/** SearchView dropdown background
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchDropdownBackground=0x7f01005c;
/** The list item height for search results. @hide
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int searchResultListItemHeight=0x7f010065;
/** SearchView AutoCompleteTextView style
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewAutoCompleteTextView=0x7f010069;
/** SearchView close button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewCloseIcon=0x7f01005d;
/** SearchView query refinement icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewEditQuery=0x7f010061;
/** SearchView query refinement icon background
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewEditQueryBackground=0x7f010062;
/** SearchView Go button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewGoIcon=0x7f01005e;
/** SearchView Search icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewSearchIcon=0x7f01005f;
/** SearchView text field background for the left section
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewTextField=0x7f010063;
/** SearchView text field background for the right section
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewTextFieldRight=0x7f010064;
/** SearchView Voice button icon
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int searchViewVoiceIcon=0x7f010060;
/** A style that may be applied to buttons or other selectable items
that should react to pressed and focus states, but that do not
have a clear visual border along the edges.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int selectableItemBackground=0x7f010019;
/** How this item should display in the Action Bar, if present.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
never | 0 | Never show this item in an action bar, show it in the overflow menu instead. Mutually exclusive with "ifRoom" and "always". |
ifRoom | 1 | Show this item in an action bar if there is room for it as determined by the system. Favor this option over "always" where possible. Mutually exclusive with "never" and "always". |
always | 2 | Always show this item in an actionbar, even if it would override the system's limits of how much stuff to put there. This may make your action bar look bad on some screens. In most cases you should use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". |
withText | 4 | When this item is shown as an action in the action bar, show a text label with it even if it has an icon representation. |
collapseActionView | 8 | This item's action view collapses to a normal menu item. When expanded, the action view takes over a larger segment of its container. |
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int spinnerDropDownItemStyle=0x7f010058;
/** Display mode for spinner options.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | Spinner options will be presented to the user as an inline dropdown anchored to the spinner widget itself. |
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int spinnerStyle=0x7f010057;
/** Specifies subtitle text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int subtitle=0x7f010029;
/** Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int subtitleTextStyle=0x7f01002b;
/** Present the text in ALL CAPS. This may use a small-caps form when available.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a boolean value, either "true" or "false".
*/
public static final int textAllCaps=0x7f01006d;
/** Text color, typeface, size, and style for the text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceLargePopupMenu=0x7f010014;
/** The preferred TextAppearance for the primary text of list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceListItem=0x7f010023;
/** The preferred TextAppearance for the primary text of small list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceListItemSmall=0x7f010024;
/** Text color, typeface, size, and style for system search result subtitle. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceSearchResultSubtitle=0x7f010067;
/** Text color, typeface, size, and style for system search result title. Defaults to primary inverse text color.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceSearchResultTitle=0x7f010066;
/** Text color, typeface, size, and style for small text inside of a popup menu.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int textAppearanceSmallPopupMenu=0x7f010015;
/** Text color for urls in search suggestions, used by things like global search
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
*/
public static final int textColorSearchUrl=0x7f010068;
/**
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int title=0x7f010025;
/** Specifies a style to use for title text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
*/
public static final int titleTextStyle=0x7f01002a;
/**
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowActionBar=0x7f010000;
/**
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowActionBarOverlay=0x7f010001;
/** A fixed height for the window along the major axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedHeightMajor=0x7f010006;
/** A fixed height for the window along the minor axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedHeightMinor=0x7f010004;
/** A fixed width for the window along the major axis of the screen,
that is, when in landscape. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedWidthMajor=0x7f010003;
/** A fixed width for the window along the minor axis of the screen,
that is, when in portrait. Can be either an absolute dimension
or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowFixedWidthMinor=0x7f010005;
/**
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
*/
public static final int windowSplitActionBar=0x7f010002;
}
public static final class bool {
public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050000;
public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050001;
/** Whether action menu items should be displayed in ALLCAPS or not.
Defaults to true. If this is not appropriate for specific locales
it should be disabled in that locale's resources.
*/
public static final int abc_config_actionMenuItemAllCaps=0x7f050005;
/** Whether action menu items should obey the "withText" showAsAction
flag. This may be set to false for situations where space is
extremely limited.
Whether action menu items should obey the "withText" showAsAction.
This may be set to false for situations where space is
extremely limited.
*/
public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050004;
public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050003;
public static final int abc_split_action_bar_is_narrow=0x7f050002;
}
public static final class color {
public static final int abc_search_url_text_holo=0x7f060003;
public static final int abc_search_url_text_normal=0x7f060000;
public static final int abc_search_url_text_pressed=0x7f060002;
public static final int abc_search_url_text_selected=0x7f060001;
}
public static final class dimen {
/** Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
Default height of an action bar.
*/
public static final int abc_action_bar_default_height=0x7f070002;
/** Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
Vertical padding around action bar icons.
*/
public static final int abc_action_bar_icon_vertical_padding=0x7f070003;
/** Size of the indeterminate Progress Bar
Size of the indeterminate Progress Bar
*/
public static final int abc_action_bar_progress_bar_size=0x7f07000a;
/** Maximum height for a stacked tab bar as part of an action bar
*/
public static final int abc_action_bar_stacked_max_height=0x7f070009;
/** Maximum width for a stacked action bar tab. This prevents
action bar tabs from becoming too wide on a wide screen when only
a few are present.
*/
public static final int abc_action_bar_stacked_tab_max_width=0x7f070001;
/** Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
Bottom margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_bottom_margin=0x7f070007;
/** Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
Text size for action bar subtitles
*/
public static final int abc_action_bar_subtitle_text_size=0x7f070005;
/** Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
Top margin for action bar subtitles
*/
public static final int abc_action_bar_subtitle_top_margin=0x7f070006;
/** Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
Text size for action bar titles
*/
public static final int abc_action_bar_title_text_size=0x7f070004;
/** Minimum width for an action button in the menu area of an action bar
Minimum width for an action button in the menu area of an action bar
Minimum width for an action button in the menu area of an action bar
*/
public static final int abc_action_button_min_width=0x7f070008;
/** The maximum width we would prefer dialogs to be. 0 if there is no
maximum (let them grow as large as the screen). Actual values are
specified for -large and -xlarge configurations.
see comment in values/config.xml
see comment in values/config.xml
*/
public static final int abc_config_prefDialogWidth=0x7f070000;
/** Width of the icon in a dropdown list
*/
public static final int abc_dropdownitem_icon_width=0x7f070010;
/** Text padding for dropdown items
*/
public static final int abc_dropdownitem_text_padding_left=0x7f07000e;
public static final int abc_dropdownitem_text_padding_right=0x7f07000f;
public static final int abc_panel_menu_list_width=0x7f07000b;
/** Preferred width of the search view.
*/
public static final int abc_search_view_preferred_width=0x7f07000d;
/** Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
Minimum width of the search view text entry area.
*/
public static final int abc_search_view_text_min_width=0x7f07000c;
/** Default screen margins, per the Android Design guidelines.
Example customization of dimensions originally defined in res/values/dimens.xml
(such as screen margins) for screens with more than 820dp of available width. This
would include 7" and 10" devices in landscape (~960dp and ~1280dp respectively).
*/
public static final int activity_horizontal_margin=0x7f070015;
public static final int activity_vertical_margin=0x7f070016;
/** The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the major axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_major=0x7f070013;
/** The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed height for a dialog along the minor axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_height_minor=0x7f070014;
/** The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the major axis
(the screen is in landscape). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_major=0x7f070011;
/** The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
The platform's desired fixed width for a dialog along the minor axis
(the screen is in portrait). This may be either a fraction or a dimension.
*/
public static final int dialog_fixed_width_minor=0x7f070012;
}
public static final class drawable {
public static final int abc_ab_bottom_solid_dark_holo=0x7f020000;
public static final int abc_ab_bottom_solid_light_holo=0x7f020001;
public static final int abc_ab_bottom_transparent_dark_holo=0x7f020002;
public static final int abc_ab_bottom_transparent_light_holo=0x7f020003;
public static final int abc_ab_share_pack_holo_dark=0x7f020004;
public static final int abc_ab_share_pack_holo_light=0x7f020005;
public static final int abc_ab_solid_dark_holo=0x7f020006;
public static final int abc_ab_solid_light_holo=0x7f020007;
public static final int abc_ab_stacked_solid_dark_holo=0x7f020008;
public static final int abc_ab_stacked_solid_light_holo=0x7f020009;
public static final int abc_ab_stacked_transparent_dark_holo=0x7f02000a;
public static final int abc_ab_stacked_transparent_light_holo=0x7f02000b;
public static final int abc_ab_transparent_dark_holo=0x7f02000c;
public static final int abc_ab_transparent_light_holo=0x7f02000d;
public static final int abc_cab_background_bottom_holo_dark=0x7f02000e;
public static final int abc_cab_background_bottom_holo_light=0x7f02000f;
public static final int abc_cab_background_top_holo_dark=0x7f020010;
public static final int abc_cab_background_top_holo_light=0x7f020011;
public static final int abc_ic_ab_back_holo_dark=0x7f020012;
public static final int abc_ic_ab_back_holo_light=0x7f020013;
public static final int abc_ic_cab_done_holo_dark=0x7f020014;
public static final int abc_ic_cab_done_holo_light=0x7f020015;
public static final int abc_ic_clear=0x7f020016;
public static final int abc_ic_clear_disabled=0x7f020017;
public static final int abc_ic_clear_holo_light=0x7f020018;
public static final int abc_ic_clear_normal=0x7f020019;
public static final int abc_ic_clear_search_api_disabled_holo_light=0x7f02001a;
public static final int abc_ic_clear_search_api_holo_light=0x7f02001b;
public static final int abc_ic_commit_search_api_holo_dark=0x7f02001c;
public static final int abc_ic_commit_search_api_holo_light=0x7f02001d;
public static final int abc_ic_go=0x7f02001e;
public static final int abc_ic_go_search_api_holo_light=0x7f02001f;
public static final int abc_ic_menu_moreoverflow_normal_holo_dark=0x7f020020;
public static final int abc_ic_menu_moreoverflow_normal_holo_light=0x7f020021;
public static final int abc_ic_menu_share_holo_dark=0x7f020022;
public static final int abc_ic_menu_share_holo_light=0x7f020023;
public static final int abc_ic_search=0x7f020024;
public static final int abc_ic_search_api_holo_light=0x7f020025;
public static final int abc_ic_voice_search=0x7f020026;
public static final int abc_ic_voice_search_api_holo_light=0x7f020027;
public static final int abc_item_background_holo_dark=0x7f020028;
public static final int abc_item_background_holo_light=0x7f020029;
public static final int abc_list_divider_holo_dark=0x7f02002a;
public static final int abc_list_divider_holo_light=0x7f02002b;
public static final int abc_list_focused_holo=0x7f02002c;
public static final int abc_list_longpressed_holo=0x7f02002d;
public static final int abc_list_pressed_holo_dark=0x7f02002e;
public static final int abc_list_pressed_holo_light=0x7f02002f;
public static final int abc_list_selector_background_transition_holo_dark=0x7f020030;
public static final int abc_list_selector_background_transition_holo_light=0x7f020031;
public static final int abc_list_selector_disabled_holo_dark=0x7f020032;
public static final int abc_list_selector_disabled_holo_light=0x7f020033;
public static final int abc_list_selector_holo_dark=0x7f020034;
public static final int abc_list_selector_holo_light=0x7f020035;
public static final int abc_menu_dropdown_panel_holo_dark=0x7f020036;
public static final int abc_menu_dropdown_panel_holo_light=0x7f020037;
public static final int abc_menu_hardkey_panel_holo_dark=0x7f020038;
public static final int abc_menu_hardkey_panel_holo_light=0x7f020039;
public static final int abc_search_dropdown_dark=0x7f02003a;
public static final int abc_search_dropdown_light=0x7f02003b;
public static final int abc_spinner_ab_default_holo_dark=0x7f02003c;
public static final int abc_spinner_ab_default_holo_light=0x7f02003d;
public static final int abc_spinner_ab_disabled_holo_dark=0x7f02003e;
public static final int abc_spinner_ab_disabled_holo_light=0x7f02003f;
public static final int abc_spinner_ab_focused_holo_dark=0x7f020040;
public static final int abc_spinner_ab_focused_holo_light=0x7f020041;
public static final int abc_spinner_ab_holo_dark=0x7f020042;
public static final int abc_spinner_ab_holo_light=0x7f020043;
public static final int abc_spinner_ab_pressed_holo_dark=0x7f020044;
public static final int abc_spinner_ab_pressed_holo_light=0x7f020045;
public static final int abc_tab_indicator_ab_holo=0x7f020046;
public static final int abc_tab_selected_focused_holo=0x7f020047;
public static final int abc_tab_selected_holo=0x7f020048;
public static final int abc_tab_selected_pressed_holo=0x7f020049;
public static final int abc_tab_unselected_pressed_holo=0x7f02004a;
public static final int abc_textfield_search_default_holo_dark=0x7f02004b;
public static final int abc_textfield_search_default_holo_light=0x7f02004c;
public static final int abc_textfield_search_right_default_holo_dark=0x7f02004d;
public static final int abc_textfield_search_right_default_holo_light=0x7f02004e;
public static final int abc_textfield_search_right_selected_holo_dark=0x7f02004f;
public static final int abc_textfield_search_right_selected_holo_light=0x7f020050;
public static final int abc_textfield_search_selected_holo_dark=0x7f020051;
public static final int abc_textfield_search_selected_holo_light=0x7f020052;
public static final int abc_textfield_searchview_holo_dark=0x7f020053;
public static final int abc_textfield_searchview_holo_light=0x7f020054;
public static final int abc_textfield_searchview_right_holo_dark=0x7f020055;
public static final int abc_textfield_searchview_right_holo_light=0x7f020056;
public static final int duck=0x7f020057;
public static final int emo_amazed=0x7f020058;
public static final int emo_angel=0x7f020059;
public static final int emo_angry=0x7f02005a;
public static final int emo_beaten=0x7f02005b;
public static final int emo_bored=0x7f02005c;
public static final int emo_clown=0x7f02005d;
public static final int emo_confused=0x7f02005e;
public static final int emo_cool=0x7f02005f;
public static final int emo_cry=0x7f020060;
public static final int emo_devil=0x7f020061;
public static final int emo_doubtful=0x7f020062;
public static final int emo_emo=0x7f020063;
public static final int emo_frozen=0x7f020064;
public static final int emo_grin=0x7f020065;
public static final int emo_indian=0x7f020066;
public static final int emo_karate=0x7f020067;
public static final int emo_kiss=0x7f020068;
public static final int emo_laugh=0x7f020069;
public static final int emo_love=0x7f02006a;
public static final int emo_millionaire=0x7f02006b;
public static final int emo_nerd=0x7f02006c;
public static final int emo_ninja=0x7f02006d;
public static final int emo_party=0x7f02006e;
public static final int emo_pirate=0x7f02006f;
public static final int emo_punk=0x7f020070;
public static final int emo_sad=0x7f020071;
public static final int emo_santa=0x7f020072;
public static final int emo_shy=0x7f020073;
public static final int emo_sick=0x7f020074;
public static final int emo_smile=0x7f020075;
public static final int emo_speechless=0x7f020076;
public static final int emo_sweating=0x7f020077;
public static final int emo_tongue=0x7f020078;
public static final int emo_vampire=0x7f020079;
public static final int emo_wacky=0x7f02007a;
public static final int emo_wink=0x7f02007b;
public static final int ic_film=0x7f02007c;
public static final int ic_launcher=0x7f02007d;
public static final int iconfont_theme=0x7f02007e;
public static final int iconfont_yuyan=0x7f02007f;
public static final int iconfont_zitibianji=0x7f020080;
}
public static final class id {
public static final int abap4=0x7f09004e;
public static final int abc=0x7f09004f;
public static final int abnf=0x7f090050;
public static final int aboutTextView3=0x7f090045;
public static final int aboutTextView5=0x7f090046;
public static final int acid=0x7f09010e;
public static final int action_about=0x7f090162;
public static final int action_bar=0x7f09001c;
public static final int action_bar_activity_content=0x7f090001;
public static final int action_bar_container=0x7f09001b;
public static final int action_bar_overlay_layout=0x7f09001f;
public static final int action_bar_root=0x7f09001a;
public static final int action_bar_subtitle=0x7f090023;
public static final int action_bar_title=0x7f090022;
public static final int action_context_bar=0x7f09001d;
public static final int action_lang=0x7f09004a;
public static final int action_menu_divider=0x7f090002;
public static final int action_menu_presenter=0x7f090003;
public static final int action_mode_close_button=0x7f090024;
public static final int action_settings=0x7f090049;
public static final int action_theme=0x7f090109;
public static final int actionscript=0x7f090051;
public static final int activity_chooser_view_content=0x7f090025;
public static final int ada=0x7f090052;
public static final int agda=0x7f090053;
public static final int aiseered=0x7f09010f;
public static final int algol=0x7f090054;
public static final int always=0x7f09000f;
public static final int ampl=0x7f090055;
public static final int amtrix=0x7f090056;
public static final int andes=0x7f090110;
public static final int anotherdark=0x7f090111;
public static final int applescript=0x7f090057;
public static final int arc=0x7f090058;
public static final int arm=0x7f090059;
public static final int as400cl=0x7f09005a;
public static final int ascend=0x7f09005b;
public static final int asp=0x7f09005c;
public static final int aspect=0x7f09005d;
public static final int assembler=0x7f09005e;
public static final int ats=0x7f09005f;
public static final int autohotkey=0x7f090060;
public static final int autoit=0x7f090061;
public static final int autumn=0x7f090112;
public static final int avenue=0x7f090062;
public static final int awk=0x7f090063;
public static final int bat=0x7f090064;
public static final int baycomb=0x7f090113;
public static final int bbcode=0x7f090065;
public static final int bclear=0x7f090114;
public static final int bcpl=0x7f090066;
public static final int beginning=0x7f090016;
public static final int bibtex=0x7f090067;
public static final int biferno=0x7f090068;
public static final int biogoo=0x7f090115;
public static final int bipolar=0x7f090116;
public static final int bison=0x7f090069;
public static final int blacknblue=0x7f090117;
public static final int blitzbasic=0x7f09006a;
public static final int bluegreen=0x7f090118;
public static final int bms=0x7f09006b;
public static final int bnf=0x7f09006c;
public static final int boo=0x7f09006d;
public static final int breeze=0x7f090119;
public static final int bright=0x7f09011a;
public static final int c=0x7f09004b;
public static final int camo=0x7f09011b;
public static final int candy=0x7f09011c;
public static final int ceylon=0x7f09006e;
public static final int charmm=0x7f09006f;
public static final int checkbox=0x7f09002d;
public static final int chill=0x7f090070;
public static final int clarity=0x7f09011d;
public static final int clean=0x7f090071;
public static final int clearbasic=0x7f090072;
public static final int clipper=0x7f090073;
public static final int clojure=0x7f090074;
public static final int clp=0x7f090075;
public static final int cobol=0x7f090076;
public static final int coldfusion=0x7f090077;
public static final int collapseActionView=0x7f090010;
public static final int conf=0x7f090078;
public static final int crk=0x7f090079;
public static final int csharp=0x7f09007a;
public static final int css=0x7f09007b;
public static final int d=0x7f09007c;
public static final int dante=0x7f09011e;
public static final int darkblue=0x7f09011f;
public static final int darkbone=0x7f090120;
public static final int darkness=0x7f090121;
public static final int darkslategray=0x7f090122;
public static final int darkspectrum=0x7f090123;
public static final int dart=0x7f09007d;
public static final int default_activity_button=0x7f090028;
public static final int denim=0x7f090124;
public static final int dialog=0x7f090014;
public static final int diff=0x7f09007e;
public static final int disableHome=0x7f090009;
public static final int dropdown=0x7f090015;
public static final int dusk=0x7f090125;
public static final int dylan=0x7f09007f;
public static final int earendel=0x7f090126;
public static final int easter=0x7f090127;
public static final int ebnf=0x7f090080;
public static final int edit_anjuta=0x7f090128;
public static final int edit_eclipse=0x7f090129;
public static final int edit_emacs=0x7f09012a;
public static final int edit_flashdevelop=0x7f09012b;
public static final int edit_gedit=0x7f09012c;
public static final int edit_jedit=0x7f09012d;
public static final int edit_kwrite=0x7f09012e;
public static final int edit_matlab=0x7f09012f;
public static final int edit_msvs2008=0x7f090130;
public static final int edit_nedit=0x7f090131;
public static final int edit_query=0x7f090030;
public static final int edit_vim=0x7f090133;
public static final int edit_vim_dark=0x7f090132;
public static final int edit_xcode=0x7f090134;
public static final int eiffel=0x7f090081;
public static final int ekvoli=0x7f090135;
public static final int end=0x7f090017;
public static final int erlang=0x7f090082;
public static final int euphoria=0x7f090083;
public static final int expand_activities_button=0x7f090026;
public static final int expanded_menu=0x7f09002c;
public static final int express=0x7f090084;
public static final int fame=0x7f090085;
public static final int felix=0x7f090086;
public static final int field_app_name=0x7f09003f;
public static final int field_version=0x7f090040;
public static final int fine_blue=0x7f09010b;
public static final int font10=0x7f09015d;
public static final int font12=0x7f09015e;
public static final int font14=0x7f09015f;
public static final int font16=0x7f090160;
public static final int font18=0x7f090161;
public static final int font_default=0x7f09015c;
public static final int fortran77=0x7f090087;
public static final int fortran90=0x7f090088;
public static final int freya=0x7f090136;
public static final int frink=0x7f090089;
public static final int fruit=0x7f090137;
public static final int fsharp=0x7f09008a;
public static final int fx=0x7f09008b;
public static final int gambas=0x7f09008c;
public static final int gdb=0x7f09008d;
public static final int go=0x7f09008e;
public static final int golden=0x7f090138;
public static final int graphviz=0x7f09008f;
public static final int greenlcd=0x7f090139;
public static final int haskell=0x7f090090;
public static final int haxe=0x7f090091;
public static final int hcl=0x7f090092;
public static final int home=0x7f090000;
public static final int homeAsUp=0x7f09000a;
public static final int html=0x7f090093;
public static final int httpd=0x7f090094;
public static final int icon=0x7f09002a;
public static final int idl=0x7f090095;
public static final int idlang=0x7f090096;
public static final int ifRoom=0x7f090011;
public static final int image=0x7f090027;
public static final int imageView1=0x7f09003d;
public static final int inc_luatex=0x7f090097;
public static final int informix=0x7f090098;
public static final int ini=0x7f090099;
public static final int innosetup=0x7f09009a;
public static final int interlis=0x7f09009b;
public static final int io=0x7f09009c;
public static final int jasmin=0x7f09009d;
public static final int java=0x7f09009e;
public static final int js=0x7f09009f;
public static final int jsp=0x7f0900a0;
public static final int kellys=0x7f09013a;
public static final int ldif=0x7f0900a1;
public static final int leo=0x7f09013b;
public static final int less=0x7f0900a2;
public static final int lhs=0x7f0900a3;
public static final int lilypond=0x7f0900a4;
public static final int limbo=0x7f0900a5;
public static final int lindenscript=0x7f0900a6;
public static final int linearLayout1=0x7f09003c;
public static final int linearLayout2=0x7f09003e;
public static final int linearLayout3=0x7f090041;
public static final int lisp=0x7f09004c;
public static final int listMode=0x7f090006;
public static final int list_item=0x7f090029;
public static final int logtalk=0x7f0900a7;
public static final int lotos=0x7f0900a8;
public static final int lotus=0x7f0900a9;
public static final int lua=0x7f0900aa;
public static final int luban=0x7f0900ab;
public static final int lucretia=0x7f09013c;
public static final int make=0x7f0900ac;
public static final int manxome=0x7f09013d;
public static final int maple=0x7f0900ad;
public static final int maroloccio=0x7f09013e;
public static final int matlab=0x7f0900ae;
public static final int matrix=0x7f09013f;
public static final int maya=0x7f0900af;
public static final int mercury=0x7f0900b0;
public static final int middle=0x7f090018;
public static final int miranda=0x7f0900b1;
public static final int mod2=0x7f0900b2;
public static final int mod3=0x7f0900b3;
public static final int modelica=0x7f0900b4;
public static final int moe=0x7f090140;
public static final int molokai=0x7f09010a;
public static final int moon=0x7f0900b5;
public static final int moria=0x7f090141;
public static final int ms=0x7f0900b6;
public static final int mssql=0x7f0900b7;
public static final int mxml=0x7f0900b8;
public static final int n3=0x7f0900b9;
public static final int nasal=0x7f0900ba;
public static final int navajo_night=0x7f090142;
public static final int navy=0x7f090143;
public static final int nbc=0x7f0900bb;
public static final int nemerle=0x7f0900bc;
public static final int neon=0x7f090144;
public static final int netrexx=0x7f0900bd;
public static final int never=0x7f090012;
public static final int nice=0x7f0900be;
public static final int night=0x7f090145;
public static final int nightshimmer=0x7f090146;
public static final int none=0x7f090019;
public static final int normal=0x7f090007;
public static final int nsis=0x7f0900bf;
public static final int nuvola=0x7f090147;
public static final int nxc=0x7f0900c0;
public static final int oberon=0x7f0900c1;
public static final int objc=0x7f0900c2;
public static final int ocaml=0x7f0900c3;
public static final int octave=0x7f0900c4;
public static final int olive=0x7f090148;
public static final int oorexx=0x7f0900c5;
public static final int orion=0x7f090149;
public static final int os=0x7f0900c6;
public static final int oxygenated=0x7f09014a;
public static final int oz=0x7f0900c7;
public static final int pablo=0x7f09014b;
public static final int paradox=0x7f0900c8;
public static final int pas=0x7f0900c9;
public static final int pdf=0x7f0900ca;
public static final int peaksea=0x7f09014c;
public static final int perl=0x7f0900cb;
public static final int php=0x7f0900cc;
public static final int pike=0x7f0900cd;
public static final int pl1=0x7f0900ce;
public static final int plperl=0x7f0900cf;
public static final int plpython=0x7f0900d0;
public static final int pltcl=0x7f0900d1;
public static final int pov=0x7f0900d2;
public static final int print=0x7f09014d;
public static final int pro=0x7f0900d3;
public static final int progress=0x7f0900d4;
public static final int progress_circular=0x7f090004;
public static final int progress_horizontal=0x7f090005;
public static final int ps=0x7f0900d5;
public static final int ps1=0x7f0900d6;
public static final int psl=0x7f0900d7;
public static final int pure=0x7f0900d8;
public static final int pyrex=0x7f0900d9;
public static final int python=0x7f09004d;
public static final int q=0x7f0900da;
public static final int qmake=0x7f0900db;
public static final int qml=0x7f0900dc;
public static final int qu=0x7f0900dd;
public static final int r=0x7f0900de;
public static final int radio=0x7f09002f;
public static final int rand01=0x7f09014e;
public static final int rdark=0x7f09014f;
public static final int rebol=0x7f0900df;
public static final int relaxedgreen=0x7f090150;
public static final int rexx=0x7f0900e0;
public static final int rnc=0x7f0900e1;
public static final int rootwater=0x7f090151;
public static final int rpg=0x7f0900e2;
public static final int rpl=0x7f0900e3;
public static final int rs=0x7f0900e4;
public static final int ruby=0x7f0900e5;
public static final int s=0x7f0900e6;
public static final int sas=0x7f0900e7;
public static final int scala=0x7f0900e8;
public static final int scilab=0x7f0900e9;
public static final int scss=0x7f0900ea;
public static final int search_badge=0x7f090032;
public static final int search_bar=0x7f090031;
public static final int search_button=0x7f090033;
public static final int search_close_btn=0x7f090038;
public static final int search_edit_frame=0x7f090034;
public static final int search_go_btn=0x7f09003a;
public static final int search_mag_icon=0x7f090035;
public static final int search_plate=0x7f090036;
public static final int search_src_text=0x7f090037;
public static final int search_voice_btn=0x7f09003b;
public static final int seashell=0x7f090152;
public static final int sh=0x7f0900eb;
public static final int shortcut=0x7f09002e;
public static final int showCustom=0x7f09000b;
public static final int showHome=0x7f09000c;
public static final int showTitle=0x7f09000d;
public static final int small=0x7f0900ec;
public static final int smalltalk=0x7f0900ed;
public static final int sml=0x7f0900ee;
public static final int snmp=0x7f0900ef;
public static final int snobol=0x7f0900f0;
public static final int solarized_dark=0x7f090153;
public static final int solarized_light=0x7f09010d;
public static final int spec=0x7f0900f1;
public static final int split_action_bar=0x7f09001e;
public static final int spn=0x7f0900f2;
public static final int sql=0x7f0900f3;
public static final int squirrel=0x7f0900f4;
public static final int styl=0x7f0900f5;
public static final int submit_area=0x7f090039;
public static final int swift=0x7f0900f6;
public static final int sybase=0x7f0900f7;
public static final int tabMode=0x7f090008;
public static final int tabula=0x7f090154;
public static final int tcl=0x7f0900f8;
public static final int tcsh=0x7f0900f9;
public static final int tcsoft=0x7f090155;
public static final int tex=0x7f0900fa;
public static final int textView1=0x7f090042;
public static final int textView2=0x7f090043;
public static final int textView3=0x7f090044;
public static final int textView5=0x7f090047;
public static final int textView6=0x7f090048;
public static final int the=0x7f090156;
public static final int title=0x7f09002b;
public static final int top_action_bar=0x7f090020;
public static final int ts=0x7f0900fb;
public static final int tsql=0x7f0900fc;
public static final int ttcn3=0x7f0900fd;
public static final int txt=0x7f0900fe;
public static final int up=0x7f090021;
public static final int upc=0x7f0900ff;
public static final int useLogo=0x7f09000e;
public static final int vala=0x7f090100;
public static final int vampire=0x7f09010c;
public static final int vb=0x7f090101;
public static final int verilog=0x7f090102;
public static final int vhd=0x7f090103;
public static final int whitengrey=0x7f090157;
public static final int withText=0x7f090013;
public static final int xml=0x7f090104;
public static final int xoria256=0x7f090158;
public static final int xpp=0x7f090105;
public static final int yaiff=0x7f090106;
public static final int yang=0x7f090107;
public static final int zellner=0x7f090159;
public static final int zenburn=0x7f09015a;
public static final int zmrok=0x7f09015b;
public static final int znn=0x7f090108;
}
public static final class integer {
/** The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
The maximum number of action buttons that should be permitted within
an action bar/action mode. This will be used to determine how many
showAsAction="ifRoom" items can fit. "always" items can override this.
*/
public static final int abc_max_action_buttons=0x7f080000;
}
public static final class layout {
public static final int abc_action_bar_decor=0x7f030000;
public static final int abc_action_bar_decor_include=0x7f030001;
public static final int abc_action_bar_decor_overlay=0x7f030002;
public static final int abc_action_bar_home=0x7f030003;
public static final int abc_action_bar_tab=0x7f030004;
public static final int abc_action_bar_tabbar=0x7f030005;
public static final int abc_action_bar_title_item=0x7f030006;
public static final int abc_action_bar_view_list_nav_layout=0x7f030007;
public static final int abc_action_menu_item_layout=0x7f030008;
public static final int abc_action_menu_layout=0x7f030009;
public static final int abc_action_mode_bar=0x7f03000a;
public static final int abc_action_mode_close_item=0x7f03000b;
public static final int abc_activity_chooser_view=0x7f03000c;
public static final int abc_activity_chooser_view_include=0x7f03000d;
public static final int abc_activity_chooser_view_list_item=0x7f03000e;
public static final int abc_expanded_menu_layout=0x7f03000f;
public static final int abc_list_menu_item_checkbox=0x7f030010;
public static final int abc_list_menu_item_icon=0x7f030011;
public static final int abc_list_menu_item_layout=0x7f030012;
public static final int abc_list_menu_item_radio=0x7f030013;
public static final int abc_popup_menu_item_layout=0x7f030014;
public static final int abc_search_dropdown_item_icons_2line=0x7f030015;
public static final int abc_search_view=0x7f030016;
public static final int abc_simple_decor=0x7f030017;
public static final int about=0x7f030018;
public static final int activity_main=0x7f030019;
public static final int support_simple_spinner_dropdown_item=0x7f03001a;
}
public static final class menu {
public static final int main=0x7f0c0000;
public static final int mymenu=0x7f0c0001;
}
public static final class string {
/** Content description for the action bar "home" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_home_description=0x7f0a0001;
/** Content description for the action bar "up" affordance. [CHAR LIMIT=NONE]
*/
public static final int abc_action_bar_up_description=0x7f0a0002;
/** Content description for the action menu overflow button. [CHAR LIMIT=NONE]
*/
public static final int abc_action_menu_overflow_description=0x7f0a0003;
/** Label for the "Done" button on the far left of action mode toolbars.
*/
public static final int abc_action_mode_done=0x7f0a0000;
/** Title for a button to expand the list of activities in ActivityChooserView [CHAR LIMIT=25]
*/
public static final int abc_activity_chooser_view_see_all=0x7f0a000a;
/** ActivityChooserView - accessibility support
Description of the shwoing of a popup window with activities to choose from. [CHAR LIMIT=NONE]
*/
public static final int abc_activitychooserview_choose_application=0x7f0a0009;
/** SearchView accessibility description for clear button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_clear=0x7f0a0006;
/** SearchView accessibility description for search text field [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_query=0x7f0a0005;
/** SearchView accessibility description for search button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_search=0x7f0a0004;
/** SearchView accessibility description for submit button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_submit=0x7f0a0007;
/** SearchView accessibility description for voice button [CHAR LIMIT=NONE]
*/
public static final int abc_searchview_description_voice=0x7f0a0008;
/** Description of the choose target button in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with=0x7f0a000c;
/** Description of a share target (both in the list of such or the default share button) in a ShareActionProvider (share UI). [CHAR LIMIT=NONE]
*/
public static final int abc_shareactionprovider_share_with_application=0x7f0a000b;
public static final int about=0x7f0a001a;
public static final int action_settings=0x7f0a000f;
public static final int app_name=0x7f0a000d;
public static final int extract=0x7f0a0010;
public static final int extract_error=0x7f0a0012;
public static final int extract_finish=0x7f0a0011;
public static final int field_license=0x7f0a0019;
public static final int hello_world=0x7f0a000e;
public static final int label_author=0x7f0a0014;
public static final int label_email=0x7f0a0015;
public static final int label_homepage=0x7f0a0016;
public static final int label_license=0x7f0a0017;
public static final int label_qq_group=0x7f0a0018;
public static final int label_version=0x7f0a0013;
public static final int myemail=0x7f0a001d;
public static final int myhomepage=0x7f0a001e;
public static final int myname=0x7f0a001b;
public static final int qq_group=0x7f0a001c;
}
public static final class style {
/**
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
API 11 theme customizations can go here.
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.
API 14 theme customizations can go here.
*/
public static final int AppBaseTheme=0x7f0b008b;
/** Application theme.
All customizations that are NOT specific to a particular API-level can go here.
*/
public static final int AppTheme=0x7f0b008c;
/** Mimic text appearance in select_dialog_item.xml
*/
public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0b0063;
public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0b006d;
public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0b006f;
/** Search View result styles
*/
public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0b006e;
public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0b0069;
public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0b006a;
public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0b0070;
public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0b0072;
/**
TextAppearance.Holo.Light.SearchResult.* are private so we extend from the default
versions instead (which are exactly the same).
*/
public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0b0071;
public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0b006b;
public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0b006c;
public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b0035;
public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b0034;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b0030;
public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0031;
public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0033;
public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0032;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b001a;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0006;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0008;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0005;
public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0007;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b001e;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0020;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b001d;
public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b001f;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0b0054;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0b0056;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0b0058;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0b0055;
public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0b0057;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0b0051;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0b0053;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0b0050;
public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0b0052;
public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0b0061;
public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0021;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b002e;
public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b002f;
public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0b0062;
public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b0028;
/** Themes in the "Theme.AppCompat" family will contain an action bar by default.
If Holo themes are available on the current platform version they will be used.
A limited Holo-styled action bar will be provided on platform versions older
than 3.0. (API 11)
These theme declarations contain any version-independent specification. Items
that need to vary based on platform version should be defined in the corresponding
"Theme.Base" theme.
Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat=0x7f0b0077;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_Base_CompactMenu=0x7f0b0083;
public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0b0084;
/** Menu/item attributes
*/
public static final int Theme_AppCompat_CompactMenu=0x7f0b007c;
public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0b007d;
public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b007a;
/** Platform-independent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_AppCompat_Light=0x7f0b0078;
/** Platform-independent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0079;
public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b007b;
/** Base platform-dependent theme
*/
public static final int Theme_Base=0x7f0b007e;
/** Base platform-dependent theme providing an action bar in a dark-themed activity.
Base platform-dependent theme providing an action bar in a dark-themed activity.
*/
public static final int Theme_Base_AppCompat=0x7f0b0080;
public static final int Theme_Base_AppCompat_Dialog_FixedSize=0x7f0b0087;
public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize=0x7f0b0088;
public static final int Theme_Base_AppCompat_DialogWhenLarge=0x7f0b0085;
/**
As we have defined the theme in values-large (for compat) and values-large takes precedence
over values-v14, we need to reset back to the Holo parent in values-large-v14. As the themes
in values-v14 & values-large-v14 are exactly the same, these "double base" themes can be
inherited from in both values-v14 and values-large-v14.
*/
public static final int Theme_Base_AppCompat_DialogWhenLarge_Base=0x7f0b0089;
/** Base platform-dependent theme providing an action bar in a light-themed activity.
Base platform-dependent theme providing an action bar in a light-themed activity.
*/
public static final int Theme_Base_AppCompat_Light=0x7f0b0081;
/** Base platform-dependent theme providing a dark action bar in a light-themed activity.
Base platform-dependent theme providing a dark action bar in a light-themed activity.
*/
public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0b0082;
public static final int Theme_Base_AppCompat_Light_DialogWhenLarge=0x7f0b0086;
public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base=0x7f0b008a;
/** Base platform-dependent theme providing a light-themed activity.
*/
public static final int Theme_Base_Light=0x7f0b007f;
/** Styles in here can be extended for customisation in your application. Each utilises
one of the Base styles. If Holo themes are available on the current platform version
they will be used instead of the compat styles.
*/
public static final int Widget_AppCompat_ActionBar=0x7f0b0000;
public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b0002;
public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b0011;
public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0017;
public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0014;
public static final int Widget_AppCompat_ActionButton=0x7f0b000b;
public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b000d;
public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b000f;
public static final int Widget_AppCompat_ActionMode=0x7f0b001b;
public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0038;
public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0036;
public static final int Widget_AppCompat_Base_ActionBar=0x7f0b003a;
public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0b003c;
public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0b0045;
public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0b004b;
public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0b0048;
/** Action Button Styles
*/
public static final int Widget_AppCompat_Base_ActionButton=0x7f0b003f;
public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0b0041;
public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0b0043;
public static final int Widget_AppCompat_Base_ActionMode=0x7f0b004e;
public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0b0075;
/** AutoCompleteTextView styles (for SearchView)
*/
public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0b0073;
public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0b005d;
/** Popup Menu
*/
public static final int Widget_AppCompat_Base_ListPopupWindow=0x7f0b0065;
/** Spinner Widgets
*/
public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0b005f;
public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0b0064;
public static final int Widget_AppCompat_Base_PopupMenu=0x7f0b0067;
public static final int Widget_AppCompat_Base_ProgressBar=0x7f0b005a;
/** Progress Bar
*/
public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0b0059;
/** Action Bar Spinner Widgets
*/
public static final int Widget_AppCompat_Base_Spinner=0x7f0b005b;
public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b0024;
public static final int Widget_AppCompat_Light_ActionBar=0x7f0b0001;
public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b0003;
public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b0004;
public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b0012;
public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0013;
public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0018;
public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0019;
public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0015;
public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0016;
public static final int Widget_AppCompat_Light_ActionButton=0x7f0b000c;
public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b000e;
public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0010;
public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b001c;
public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0039;
public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b0037;
public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0b003b;
public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0b003d;
public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0b003e;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0b0046;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0b0047;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0b004c;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0b004d;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0b0049;
public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0b004a;
public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0b0040;
public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0b0042;
public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0b0044;
public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0b004f;
public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0b0076;
public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0b0074;
public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0b005e;
public static final int Widget_AppCompat_Light_Base_ListPopupWindow=0x7f0b0066;
public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0b0060;
public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0b0068;
public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0b005c;
public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b0025;
public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b002a;
public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0027;
public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b002c;
public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0023;
public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0029;
public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0026;
public static final int Widget_AppCompat_ListView_Menu=0x7f0b002d;
public static final int Widget_AppCompat_PopupMenu=0x7f0b002b;
public static final int Widget_AppCompat_ProgressBar=0x7f0b000a;
public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0009;
public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b0022;
}
public static final class styleable {
/** ============================================
Attributes used to style the Action Bar.
These should be set on your theme; the default actionBarStyle will
propagate them to the correct elements as needed.
Please Note: when overriding attributes for an ActionBar style
you must specify each attribute twice: once with the "android:"
namespace prefix and once without.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionBar_background org.evilbinary.highliter:background} | Specifies a background drawable for the action bar. |
{@link #ActionBar_backgroundSplit org.evilbinary.highliter:backgroundSplit} | Specifies a background drawable for the bottom component of a split action bar. |
{@link #ActionBar_backgroundStacked org.evilbinary.highliter:backgroundStacked} | Specifies a background drawable for a second stacked row of the action bar. |
{@link #ActionBar_customNavigationLayout org.evilbinary.highliter:customNavigationLayout} | Specifies a layout for custom navigation. |
{@link #ActionBar_displayOptions org.evilbinary.highliter:displayOptions} | Options affecting how the action bar is displayed. |
{@link #ActionBar_divider org.evilbinary.highliter:divider} | Specifies the drawable used for item dividers. |
{@link #ActionBar_height org.evilbinary.highliter:height} | Specifies a fixed height. |
{@link #ActionBar_homeLayout org.evilbinary.highliter:homeLayout} | Specifies a layout to use for the "home" section of the action bar. |
{@link #ActionBar_icon org.evilbinary.highliter:icon} | Specifies the drawable used for the application icon. |
{@link #ActionBar_indeterminateProgressStyle org.evilbinary.highliter:indeterminateProgressStyle} | Specifies a style resource to use for an indeterminate progress spinner. |
{@link #ActionBar_itemPadding org.evilbinary.highliter:itemPadding} | Specifies padding that should be applied to the left and right sides of system-provided items in the bar. |
{@link #ActionBar_logo org.evilbinary.highliter:logo} | Specifies the drawable used for the application logo. |
{@link #ActionBar_navigationMode org.evilbinary.highliter:navigationMode} | The type of navigation to use. |
{@link #ActionBar_progressBarPadding org.evilbinary.highliter:progressBarPadding} | Specifies the horizontal padding on either end for an embedded progress bar. |
{@link #ActionBar_progressBarStyle org.evilbinary.highliter:progressBarStyle} | Specifies a style resource to use for an embedded progress bar. |
{@link #ActionBar_subtitle org.evilbinary.highliter:subtitle} | Specifies subtitle text used for navigationMode="normal" |
{@link #ActionBar_subtitleTextStyle org.evilbinary.highliter:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionBar_title org.evilbinary.highliter:title} | Specifies title text used for navigationMode="normal" |
{@link #ActionBar_titleTextStyle org.evilbinary.highliter:titleTextStyle} | Specifies a style to use for title text. |
@attr description Specifies a background drawable for the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:background */ public static final int ActionBar_background = 10; /**
@attr description Specifies a background drawable for the bottom component of a split action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name org.evilbinary.highliter:backgroundSplit */ public static final int ActionBar_backgroundSplit = 12; /**
@attr description Specifies a background drawable for a second stacked row of the action bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name org.evilbinary.highliter:backgroundStacked */ public static final int ActionBar_backgroundStacked = 11; /**
@attr description Specifies a layout for custom navigation. Overrides navigationMode.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:customNavigationLayout */ public static final int ActionBar_customNavigationLayout = 13; /**
@attr description Options affecting how the action bar is displayed.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
useLogo | 0x1 | |
showHome | 0x2 | |
homeAsUp | 0x4 | |
showTitle | 0x8 | |
showCustom | 0x10 | |
disableHome | 0x20 |
This is a private symbol. @attr name org.evilbinary.highliter:displayOptions */ public static final int ActionBar_displayOptions = 3; /**
@attr description Specifies the drawable used for item dividers.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:divider */ public static final int ActionBar_divider = 9; /**
@attr description Specifies a fixed height.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:height */ public static final int ActionBar_height = 1; /**
@attr description Specifies a layout to use for the "home" section of the action bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:homeLayout */ public static final int ActionBar_homeLayout = 14; /**
@attr description Specifies the drawable used for the application icon.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:icon */ public static final int ActionBar_icon = 7; /**
@attr description Specifies a style resource to use for an indeterminate progress spinner.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:indeterminateProgressStyle */ public static final int ActionBar_indeterminateProgressStyle = 16; /**
@attr description Specifies padding that should be applied to the left and right sides of system-provided items in the bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:itemPadding */ public static final int ActionBar_itemPadding = 18; /**
@attr description Specifies the drawable used for the application logo.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:logo */ public static final int ActionBar_logo = 8; /**
@attr description The type of navigation to use.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
normal | 0 | Normal static title text |
listMode | 1 | The action bar will use a selection list for navigation. |
tabMode | 2 | The action bar will use a series of horizontal tabs for navigation. |
This is a private symbol. @attr name org.evilbinary.highliter:navigationMode */ public static final int ActionBar_navigationMode = 2; /**
@attr description Specifies the horizontal padding on either end for an embedded progress bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:progressBarPadding */ public static final int ActionBar_progressBarPadding = 17; /**
@attr description Specifies a style resource to use for an embedded progress bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:progressBarStyle */ public static final int ActionBar_progressBarStyle = 15; /**
@attr description Specifies subtitle text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:subtitle */ public static final int ActionBar_subtitle = 4; /**
@attr description Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:subtitleTextStyle */ public static final int ActionBar_subtitleTextStyle = 6; /**
@attr description Specifies title text used for navigationMode="normal"
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:title */ public static final int ActionBar_title = 0; /**
@attr description Specifies a style to use for title text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:titleTextStyle */ public static final int ActionBar_titleTextStyle = 5; /** Valid LayoutParams for views placed in the action bar as custom views.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionBarLayout_android_layout_gravity android:layout_gravity} |
This symbol is the offset where the {@link android.R.attr#layout_gravity} attribute's value can be found in the {@link #ActionBarLayout} array. @attr name android:layout_gravity */ public static final int ActionBarLayout_android_layout_gravity = 0; /** These attributes are meant to be specified and customized by the app. The system will read and apply them as needed. These attributes control properties of the activity window, such as whether an action bar should be present and whether it should overlay content.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionBarWindow_windowActionBar org.evilbinary.highliter:windowActionBar} | |
{@link #ActionBarWindow_windowActionBarOverlay org.evilbinary.highliter:windowActionBarOverlay} | |
{@link #ActionBarWindow_windowFixedHeightMajor org.evilbinary.highliter:windowFixedHeightMajor} | A fixed height for the window along the major axis of the screen, that is, when in portrait. |
{@link #ActionBarWindow_windowFixedHeightMinor org.evilbinary.highliter:windowFixedHeightMinor} | A fixed height for the window along the minor axis of the screen, that is, when in landscape. |
{@link #ActionBarWindow_windowFixedWidthMajor org.evilbinary.highliter:windowFixedWidthMajor} | A fixed width for the window along the major axis of the screen, that is, when in landscape. |
{@link #ActionBarWindow_windowFixedWidthMinor org.evilbinary.highliter:windowFixedWidthMinor} | A fixed width for the window along the minor axis of the screen, that is, when in portrait. |
{@link #ActionBarWindow_windowSplitActionBar org.evilbinary.highliter:windowSplitActionBar} |
This symbol is the offset where the {@link org.evilbinary.highliter.R.attr#windowActionBar} attribute's value can be found in the {@link #ActionBarWindow} array.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name org.evilbinary.highliter:windowActionBar
*/
public static final int ActionBarWindow_windowActionBar = 0;
/**
This symbol is the offset where the {@link org.evilbinary.highliter.R.attr#windowActionBarOverlay} attribute's value can be found in the {@link #ActionBarWindow} array.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name org.evilbinary.highliter:windowActionBarOverlay
*/
public static final int ActionBarWindow_windowActionBarOverlay = 1;
/**
@attr description A fixed height for the window along the major axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:windowFixedHeightMajor */ public static final int ActionBarWindow_windowFixedHeightMajor = 6; /**
@attr description A fixed height for the window along the minor axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:windowFixedHeightMinor */ public static final int ActionBarWindow_windowFixedHeightMinor = 4; /**
@attr description A fixed width for the window along the major axis of the screen, that is, when in landscape. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:windowFixedWidthMajor */ public static final int ActionBarWindow_windowFixedWidthMajor = 3; /**
@attr description A fixed width for the window along the minor axis of the screen, that is, when in portrait. Can be either an absolute dimension or a fraction of the screen size in that dimension.
May be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
May be a fractional value, which is a floating point number appended with either % or %p, such as "14.5%".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:windowFixedWidthMinor */ public static final int ActionBarWindow_windowFixedWidthMinor = 5; /**
This symbol is the offset where the {@link org.evilbinary.highliter.R.attr#windowSplitActionBar} attribute's value can be found in the {@link #ActionBarWindow} array.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
@attr name org.evilbinary.highliter:windowSplitActionBar
*/
public static final int ActionBarWindow_windowSplitActionBar = 2;
/** Attributes that can be used with a ActionMenuItemView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionMenuItemView_android_minWidth android:minWidth} |
This symbol is the offset where the {@link android.R.attr#minWidth} attribute's value can be found in the {@link #ActionMenuItemView} array. @attr name android:minWidth */ public static final int ActionMenuItemView_android_minWidth = 0; /** Size of padding on either end of a divider. */ public static final int[] ActionMenuView = { }; /** Attributes that can be used with a ActionMode.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActionMode_background org.evilbinary.highliter:background} | Specifies a background for the action mode bar. |
{@link #ActionMode_backgroundSplit org.evilbinary.highliter:backgroundSplit} | Specifies a background for the split action mode bar. |
{@link #ActionMode_height org.evilbinary.highliter:height} | Specifies a fixed height for the action mode bar. |
{@link #ActionMode_subtitleTextStyle org.evilbinary.highliter:subtitleTextStyle} | Specifies a style to use for subtitle text. |
{@link #ActionMode_titleTextStyle org.evilbinary.highliter:titleTextStyle} | Specifies a style to use for title text. |
@attr description Specifies a background for the action mode bar.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:background */ public static final int ActionMode_background = 3; /**
@attr description Specifies a background for the split action mode bar.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a color value, in the form of "#rgb", "#argb",
"#rrggbb", or "#aarrggbb".
This is a private symbol. @attr name org.evilbinary.highliter:backgroundSplit */ public static final int ActionMode_backgroundSplit = 4; /**
@attr description Specifies a fixed height for the action mode bar.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:height */ public static final int ActionMode_height = 0; /**
@attr description Specifies a style to use for subtitle text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:subtitleTextStyle */ public static final int ActionMode_subtitleTextStyle = 2; /**
@attr description Specifies a style to use for title text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:titleTextStyle */ public static final int ActionMode_titleTextStyle = 1; /** Attrbitutes for a ActivityChooserView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #ActivityChooserView_expandActivityOverflowButtonDrawable org.evilbinary.highliter:expandActivityOverflowButtonDrawable} | The drawable to show in the button for expanding the activities overflow popup. |
{@link #ActivityChooserView_initialActivityCount org.evilbinary.highliter:initialActivityCount} | The maximal number of items initially shown in the activity list. |
@attr description The drawable to show in the button for expanding the activities overflow popup. Note: Clients would like to set this drawable as a clue about the action the chosen activity will perform. For example, if share activity is to be chosen the drawable should give a clue that sharing is to be performed.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:expandActivityOverflowButtonDrawable */ public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1; /**
@attr description The maximal number of items initially shown in the activity list.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:initialActivityCount */ public static final int ActivityChooserView_initialActivityCount = 0; /** Attributes that can be used with a CompatTextView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #CompatTextView_textAllCaps org.evilbinary.highliter:textAllCaps} | Present the text in ALL CAPS. |
@attr description Present the text in ALL CAPS. This may use a small-caps form when available.
May be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
May be a boolean value, either "true" or "false".
This is a private symbol. @attr name org.evilbinary.highliter:textAllCaps */ public static final int CompatTextView_textAllCaps = 0; /** Attributes that can be used with a LinearLayoutICS.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #LinearLayoutICS_divider org.evilbinary.highliter:divider} | Drawable to use as a vertical divider between buttons. |
{@link #LinearLayoutICS_dividerPadding org.evilbinary.highliter:dividerPadding} | Size of padding on either end of a divider. |
{@link #LinearLayoutICS_showDividers org.evilbinary.highliter:showDividers} | Setting for which dividers to show. |
@attr description Drawable to use as a vertical divider between buttons.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:divider */ public static final int LinearLayoutICS_divider = 0; /**
@attr description Size of padding on either end of a divider.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:dividerPadding */ public static final int LinearLayoutICS_dividerPadding = 2; /**
@attr description Setting for which dividers to show.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
none | 0 | |
beginning | 1 | |
middle | 2 | |
end | 4 |
This is a private symbol. @attr name org.evilbinary.highliter:showDividers */ public static final int LinearLayoutICS_showDividers = 1; /** Base attributes that are available to all groups.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #MenuGroup_android_checkableBehavior android:checkableBehavior} | Whether the items are capable of displaying a check mark. |
{@link #MenuGroup_android_enabled android:enabled} | Whether the items are enabled. |
{@link #MenuGroup_android_id android:id} | The ID of the group. |
{@link #MenuGroup_android_menuCategory android:menuCategory} | The category applied to all items within this group. |
{@link #MenuGroup_android_orderInCategory android:orderInCategory} | The order within the category applied to all items within this group. |
{@link #MenuGroup_android_visible android:visible} | Whether the items are shown/visible. |
@attr description Whether the items are capable of displaying a check mark.
This corresponds to the global attribute resource symbol {@link android.R.attr#checkableBehavior}. @attr name android:checkableBehavior */ public static final int MenuGroup_android_checkableBehavior = 5; /**
@attr description Whether the items are enabled.
This corresponds to the global attribute resource symbol {@link android.R.attr#enabled}. @attr name android:enabled */ public static final int MenuGroup_android_enabled = 0; /**
@attr description The ID of the group.
This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int MenuGroup_android_id = 1; /**
@attr description The category applied to all items within this group. (This will be or'ed with the orderInCategory attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#menuCategory}. @attr name android:menuCategory */ public static final int MenuGroup_android_menuCategory = 3; /**
@attr description The order within the category applied to all items within this group. (This will be or'ed with the category attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#orderInCategory}. @attr name android:orderInCategory */ public static final int MenuGroup_android_orderInCategory = 4; /**
@attr description Whether the items are shown/visible.
This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int MenuGroup_android_visible = 2; /** Base attributes that are available to all Item objects.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #MenuItem_actionLayout org.evilbinary.highliter:actionLayout} | An optional layout to be used as an action view. |
{@link #MenuItem_actionProviderClass org.evilbinary.highliter:actionProviderClass} | The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item. |
{@link #MenuItem_actionViewClass org.evilbinary.highliter:actionViewClass} | The name of an optional View class to instantiate and use as an action view. |
{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut} | The alphabetic shortcut key. |
{@link #MenuItem_android_checkable android:checkable} | Whether the item is capable of displaying a check mark. |
{@link #MenuItem_android_checked android:checked} | Whether the item is checked. |
{@link #MenuItem_android_enabled android:enabled} | Whether the item is enabled. |
{@link #MenuItem_android_icon android:icon} | The icon associated with this item. |
{@link #MenuItem_android_id android:id} | The ID of the item. |
{@link #MenuItem_android_menuCategory android:menuCategory} | The category applied to the item. |
{@link #MenuItem_android_numericShortcut android:numericShortcut} | The numeric shortcut key. |
{@link #MenuItem_android_onClick android:onClick} | Name of a method on the Context used to inflate the menu that will be called when the item is clicked. |
{@link #MenuItem_android_orderInCategory android:orderInCategory} | The order within the category applied to the item. |
{@link #MenuItem_android_title android:title} | The title associated with the item. |
{@link #MenuItem_android_titleCondensed android:titleCondensed} | The condensed title associated with the item. |
{@link #MenuItem_android_visible android:visible} | Whether the item is shown/visible. |
{@link #MenuItem_showAsAction org.evilbinary.highliter:showAsAction} | How this item should display in the Action Bar, if present. |
@attr description An optional layout to be used as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:actionLayout */ public static final int MenuItem_actionLayout = 14; /**
@attr description The name of an optional ActionProvider class to instantiate an action view and perform operations such as default action for that menu item. See {@link android.view.MenuItem#setActionProvider(android.view.ActionProvider)} for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:actionProviderClass */ public static final int MenuItem_actionProviderClass = 16; /**
@attr description The name of an optional View class to instantiate and use as an action view. See {@link android.view.MenuItem#setActionView(android.view.View)} for more info.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:actionViewClass */ public static final int MenuItem_actionViewClass = 15; /**
@attr description The alphabetic shortcut key. This is the shortcut when using a keyboard with alphabetic keys.
This corresponds to the global attribute resource symbol {@link android.R.attr#alphabeticShortcut}. @attr name android:alphabeticShortcut */ public static final int MenuItem_android_alphabeticShortcut = 9; /**
@attr description Whether the item is capable of displaying a check mark.
This corresponds to the global attribute resource symbol {@link android.R.attr#checkable}. @attr name android:checkable */ public static final int MenuItem_android_checkable = 11; /**
@attr description Whether the item is checked. Note that you must first have enabled checking with the checkable attribute or else the check mark will not appear.
This corresponds to the global attribute resource symbol {@link android.R.attr#checked}. @attr name android:checked */ public static final int MenuItem_android_checked = 3; /**
@attr description Whether the item is enabled.
This corresponds to the global attribute resource symbol {@link android.R.attr#enabled}. @attr name android:enabled */ public static final int MenuItem_android_enabled = 1; /**
@attr description The icon associated with this item. This icon will not always be shown, so the title should be sufficient in describing this item.
This corresponds to the global attribute resource symbol {@link android.R.attr#icon}. @attr name android:icon */ public static final int MenuItem_android_icon = 0; /**
@attr description The ID of the item.
This corresponds to the global attribute resource symbol {@link android.R.attr#id}. @attr name android:id */ public static final int MenuItem_android_id = 2; /**
@attr description The category applied to the item. (This will be or'ed with the orderInCategory attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#menuCategory}. @attr name android:menuCategory */ public static final int MenuItem_android_menuCategory = 5; /**
@attr description The numeric shortcut key. This is the shortcut when using a numeric (e.g., 12-key) keyboard.
This corresponds to the global attribute resource symbol {@link android.R.attr#numericShortcut}. @attr name android:numericShortcut */ public static final int MenuItem_android_numericShortcut = 10; /**
@attr description Name of a method on the Context used to inflate the menu that will be called when the item is clicked.
This corresponds to the global attribute resource symbol {@link android.R.attr#onClick}. @attr name android:onClick */ public static final int MenuItem_android_onClick = 12; /**
@attr description The order within the category applied to the item. (This will be or'ed with the category attribute.)
This corresponds to the global attribute resource symbol {@link android.R.attr#orderInCategory}. @attr name android:orderInCategory */ public static final int MenuItem_android_orderInCategory = 6; /**
@attr description The title associated with the item.
This corresponds to the global attribute resource symbol {@link android.R.attr#title}. @attr name android:title */ public static final int MenuItem_android_title = 7; /**
@attr description The condensed title associated with the item. This is used in situations where the normal title may be too long to be displayed.
This corresponds to the global attribute resource symbol {@link android.R.attr#titleCondensed}. @attr name android:titleCondensed */ public static final int MenuItem_android_titleCondensed = 8; /**
@attr description Whether the item is shown/visible.
This corresponds to the global attribute resource symbol {@link android.R.attr#visible}. @attr name android:visible */ public static final int MenuItem_android_visible = 4; /**
@attr description How this item should display in the Action Bar, if present.
Must be one or more (separated by '|') of the following constant values.
| Constant | Value | Description |
|---|---|---|
never | 0 | Never show this item in an action bar, show it in the overflow menu instead. Mutually exclusive with "ifRoom" and "always". |
ifRoom | 1 | Show this item in an action bar if there is room for it as determined by the system. Favor this option over "always" where possible. Mutually exclusive with "never" and "always". |
always | 2 | Always show this item in an actionbar, even if it would override the system's limits of how much stuff to put there. This may make your action bar look bad on some screens. In most cases you should use "ifRoom" instead. Mutually exclusive with "ifRoom" and "never". |
withText | 4 | When this item is shown as an action in the action bar, show a text label with it even if it has an icon representation. |
collapseActionView | 8 | This item's action view collapses to a normal menu item. When expanded, the action view takes over a larger segment of its container. |
This is a private symbol. @attr name org.evilbinary.highliter:showAsAction */ public static final int MenuItem_showAsAction = 13; /** Attributes that can be used with a MenuView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #MenuView_android_headerBackground android:headerBackground} | Default background for the menu header. |
{@link #MenuView_android_horizontalDivider android:horizontalDivider} | Default horizontal divider between rows of menu items. |
{@link #MenuView_android_itemBackground android:itemBackground} | Default background for each menu item. |
{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha} | Default disabled icon alpha for each menu item that shows an icon. |
{@link #MenuView_android_itemTextAppearance android:itemTextAppearance} | Default appearance of menu item text. |
{@link #MenuView_android_preserveIconSpacing android:preserveIconSpacing} | Whether space should be reserved in layout when an icon is missing. |
{@link #MenuView_android_verticalDivider android:verticalDivider} | Default vertical divider between menu items. |
{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle} | Default animations for the menu. |
@attr description Default background for the menu header.
This corresponds to the global attribute resource symbol {@link android.R.attr#headerBackground}. @attr name android:headerBackground */ public static final int MenuView_android_headerBackground = 4; /**
@attr description Default horizontal divider between rows of menu items.
This corresponds to the global attribute resource symbol {@link android.R.attr#horizontalDivider}. @attr name android:horizontalDivider */ public static final int MenuView_android_horizontalDivider = 2; /**
@attr description Default background for each menu item.
This corresponds to the global attribute resource symbol {@link android.R.attr#itemBackground}. @attr name android:itemBackground */ public static final int MenuView_android_itemBackground = 5; /**
@attr description Default disabled icon alpha for each menu item that shows an icon.
This corresponds to the global attribute resource symbol {@link android.R.attr#itemIconDisabledAlpha}. @attr name android:itemIconDisabledAlpha */ public static final int MenuView_android_itemIconDisabledAlpha = 6; /**
@attr description Default appearance of menu item text.
This corresponds to the global attribute resource symbol {@link android.R.attr#itemTextAppearance}. @attr name android:itemTextAppearance */ public static final int MenuView_android_itemTextAppearance = 1; /**
@attr description Whether space should be reserved in layout when an icon is missing.
This is a private symbol. @attr name android:preserveIconSpacing */ public static final int MenuView_android_preserveIconSpacing = 7; /**
@attr description Default vertical divider between menu items.
This corresponds to the global attribute resource symbol {@link android.R.attr#verticalDivider}. @attr name android:verticalDivider */ public static final int MenuView_android_verticalDivider = 3; /**
@attr description Default animations for the menu.
This corresponds to the global attribute resource symbol {@link android.R.attr#windowAnimationStyle}. @attr name android:windowAnimationStyle */ public static final int MenuView_android_windowAnimationStyle = 0; /** Attributes that can be used with a SearchView.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #SearchView_android_imeOptions android:imeOptions} | The IME options to set on the query text field. |
{@link #SearchView_android_inputType android:inputType} | The input type to set on the query text field. |
{@link #SearchView_android_maxWidth android:maxWidth} | An optional maximum width of the SearchView. |
{@link #SearchView_iconifiedByDefault org.evilbinary.highliter:iconifiedByDefault} | The default state of the SearchView. |
{@link #SearchView_queryHint org.evilbinary.highliter:queryHint} | An optional query hint string to be displayed in the empty query field. |
@attr description The IME options to set on the query text field.
This corresponds to the global attribute resource symbol {@link android.R.attr#imeOptions}. @attr name android:imeOptions */ public static final int SearchView_android_imeOptions = 2; /**
@attr description The input type to set on the query text field.
This corresponds to the global attribute resource symbol {@link android.R.attr#inputType}. @attr name android:inputType */ public static final int SearchView_android_inputType = 1; /**
@attr description An optional maximum width of the SearchView.
This corresponds to the global attribute resource symbol {@link android.R.attr#maxWidth}. @attr name android:maxWidth */ public static final int SearchView_android_maxWidth = 0; /**
@attr description The default state of the SearchView. If true, it will be iconified when not in use and expanded when clicked.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:iconifiedByDefault */ public static final int SearchView_iconifiedByDefault = 3; /**
@attr description An optional query hint string to be displayed in the empty query field.
Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:queryHint */ public static final int SearchView_queryHint = 4; /** Attributes that can be used with a Spinner.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset} | Horizontal offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_dropDownSelector android:dropDownSelector} | List selector to use for spinnerMode="dropdown" display. |
{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset} | Vertical offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_dropDownWidth android:dropDownWidth} | Width of the dropdown in spinnerMode="dropdown". |
{@link #Spinner_android_gravity android:gravity} | Gravity setting for positioning the currently selected item. |
{@link #Spinner_android_popupBackground android:popupBackground} | Background drawable to use for the dropdown in spinnerMode="dropdown". |
{@link #Spinner_disableChildrenWhenDisabled org.evilbinary.highliter:disableChildrenWhenDisabled} | Whether this spinner should mark child views as enabled/disabled when the spinner itself is enabled/disabled. |
{@link #Spinner_popupPromptView org.evilbinary.highliter:popupPromptView} | Reference to a layout to use for displaying a prompt in the dropdown for spinnerMode="dropdown". |
{@link #Spinner_prompt org.evilbinary.highliter:prompt} | The prompt to display when the spinner's dialog is shown. |
{@link #Spinner_spinnerMode org.evilbinary.highliter:spinnerMode} | Display mode for spinner options. |
@attr description Horizontal offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownHorizontalOffset}. @attr name android:dropDownHorizontalOffset */ public static final int Spinner_android_dropDownHorizontalOffset = 4; /**
@attr description List selector to use for spinnerMode="dropdown" display.
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownSelector}. @attr name android:dropDownSelector */ public static final int Spinner_android_dropDownSelector = 1; /**
@attr description Vertical offset from the spinner widget for positioning the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownVerticalOffset}. @attr name android:dropDownVerticalOffset */ public static final int Spinner_android_dropDownVerticalOffset = 5; /**
@attr description Width of the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#dropDownWidth}. @attr name android:dropDownWidth */ public static final int Spinner_android_dropDownWidth = 3; /**
@attr description Gravity setting for positioning the currently selected item.
This corresponds to the global attribute resource symbol {@link android.R.attr#gravity}. @attr name android:gravity */ public static final int Spinner_android_gravity = 0; /**
@attr description Background drawable to use for the dropdown in spinnerMode="dropdown".
This corresponds to the global attribute resource symbol {@link android.R.attr#popupBackground}. @attr name android:popupBackground */ public static final int Spinner_android_popupBackground = 2; /**
@attr description Whether this spinner should mark child views as enabled/disabled when the spinner itself is enabled/disabled.
Must be a boolean value, either "true" or "false".
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:disableChildrenWhenDisabled */ public static final int Spinner_disableChildrenWhenDisabled = 9; /**
@attr description Reference to a layout to use for displaying a prompt in the dropdown for spinnerMode="dropdown". This layout must contain a TextView with the id {@code @android:id/text1} to be populated with the prompt text.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:popupPromptView */ public static final int Spinner_popupPromptView = 8; /**
@attr description The prompt to display when the spinner's dialog is shown.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:prompt */ public static final int Spinner_prompt = 6; /**
@attr description Display mode for spinner options.
Must be one of the following constant values.
| Constant | Value | Description |
|---|---|---|
dialog | 0 | Spinner options will be presented to the user as a dialog window. |
dropdown | 1 | Spinner options will be presented to the user as an inline dropdown anchored to the spinner widget itself. |
This is a private symbol. @attr name org.evilbinary.highliter:spinnerMode */ public static final int Spinner_spinnerMode = 7; /** These are the standard attributes that make up a complete theme.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #Theme_actionDropDownStyle org.evilbinary.highliter:actionDropDownStyle} | Default ActionBar dropdown style. |
{@link #Theme_dropdownListPreferredItemHeight org.evilbinary.highliter:dropdownListPreferredItemHeight} | The preferred item height for dropdown lists. |
{@link #Theme_listChoiceBackgroundIndicator org.evilbinary.highliter:listChoiceBackgroundIndicator} | Drawable used as a background for selected list items. |
{@link #Theme_panelMenuListTheme org.evilbinary.highliter:panelMenuListTheme} | Default Panel Menu style. |
{@link #Theme_panelMenuListWidth org.evilbinary.highliter:panelMenuListWidth} | Default Panel Menu width. |
{@link #Theme_popupMenuStyle org.evilbinary.highliter:popupMenuStyle} | Default PopupMenu style. |
@attr description Default ActionBar dropdown style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:actionDropDownStyle */ public static final int Theme_actionDropDownStyle = 0; /**
@attr description The preferred item height for dropdown lists.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:dropdownListPreferredItemHeight */ public static final int Theme_dropdownListPreferredItemHeight = 1; /**
@attr description Drawable used as a background for selected list items.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:listChoiceBackgroundIndicator */ public static final int Theme_listChoiceBackgroundIndicator = 5; /**
@attr description Default Panel Menu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:panelMenuListTheme */ public static final int Theme_panelMenuListTheme = 4; /**
@attr description Default Panel Menu width.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:panelMenuListWidth */ public static final int Theme_panelMenuListWidth = 3; /**
@attr description Default PopupMenu style.
Must be a reference to another resource, in the form "@[+][package:]type:name"
or to a theme attribute in the form "?[package:][type:]name".
This is a private symbol. @attr name org.evilbinary.highliter:popupMenuStyle */ public static final int Theme_popupMenuStyle = 2; /** Attributes that can be used with a View.
Includes the following attributes:
| Attribute | Description |
|---|---|
{@link #View_android_focusable android:focusable} | Boolean that controls whether a view can take focus. |
{@link #View_paddingEnd org.evilbinary.highliter:paddingEnd} | Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}. |
{@link #View_paddingStart org.evilbinary.highliter:paddingStart} | Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}. |
@attr description Boolean that controls whether a view can take focus. By default the user can not move focus to a view; by setting this attribute to true the view is allowed to take focus. This value does not impact the behavior of directly calling {@link android.view.View#requestFocus}, which will always request focus regardless of this view. It only impacts where focus navigation will try to move focus.
This corresponds to the global attribute resource symbol {@link android.R.attr#focusable}. @attr name android:focusable */ public static final int View_android_focusable = 0; /**
@attr description Sets the padding, in pixels, of the end edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol. @attr name org.evilbinary.highliter:paddingEnd */ public static final int View_paddingEnd = 2; /**
@attr description Sets the padding, in pixels, of the start edge; see {@link android.R.attr#padding}.
Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
This may also be a reference to a resource (in the form
"@[package:]type:name") or
theme attribute (in the form
"?[package:][type:]name")
containing a value of this type.
This is a private symbol.
@attr name org.evilbinary.highliter:paddingStart
*/
public static final int View_paddingStart = 1;
};
}
================================================
FILE: gradle/wrapper/gradle-wrapper.properties
================================================
#Wed Oct 21 11:34:03 PDT 2015
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.8-all.zip
================================================
FILE: gradlew
================================================
#!/usr/bin/env bash
##############################################################################
##
## Gradle start up script for UN*X
##
##############################################################################
# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
DEFAULT_JVM_OPTS=""
APP_NAME="Gradle"
APP_BASE_NAME=`basename "$0"`
# Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum"
warn ( ) {
echo "$*"
}
die ( ) {
echo
echo "$*"
echo
exit 1
}
# OS specific support (must be 'true' or 'false').
cygwin=false
msys=false
darwin=false
case "`uname`" in
CYGWIN* )
cygwin=true
;;
Darwin* )
darwin=true
;;
MINGW* )
msys=true
;;
esac
# Attempt to set APP_HOME
# Resolve links: $0 may be a link
PRG="$0"
# Need this for relative symlinks.
while [ -h "$PRG" ] ; do
ls=`ls -ld "$PRG"`
link=`expr "$ls" : '.*-> \(.*\)$'`
if expr "$link" : '/.*' > /dev/null; then
PRG="$link"
else
PRG=`dirname "$PRG"`"/$link"
fi
done
SAVED="`pwd`"
cd "`dirname \"$PRG\"`/" >/dev/null
APP_HOME="`pwd -P`"
cd "$SAVED" >/dev/null
CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
# Determine the Java command to use to start the JVM.
if [ -n "$JAVA_HOME" ] ; then
if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
# IBM's JDK on AIX uses strange locations for the executables
JAVACMD="$JAVA_HOME/jre/sh/java"
else
JAVACMD="$JAVA_HOME/bin/java"
fi
if [ ! -x "$JAVACMD" ] ; then
die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
else
JAVACMD="java"
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
Please set the JAVA_HOME variable in your environment to match the
location of your Java installation."
fi
# Increase the maximum file descriptors if we can.
if [ "$cygwin" = "false" -a "$darwin" = "false" ] ; then
MAX_FD_LIMIT=`ulimit -H -n`
if [ $? -eq 0 ] ; then
if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
MAX_FD="$MAX_FD_LIMIT"
fi
ulimit -n $MAX_FD
if [ $? -ne 0 ] ; then
warn "Could not set maximum file descriptor limit: $MAX_FD"
fi
else
warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
fi
fi
# For Darwin, add options to specify how the application appears in the dock
if $darwin; then
GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
fi
# For Cygwin, switch paths to Windows format before running java
if $cygwin ; then
APP_HOME=`cygpath --path --mixed "$APP_HOME"`
CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
JAVACMD=`cygpath --unix "$JAVACMD"`
# We build the pattern for arguments to be converted via cygpath
ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
SEP=""
for dir in $ROOTDIRSRAW ; do
ROOTDIRS="$ROOTDIRS$SEP$dir"
SEP="|"
done
OURCYGPATTERN="(^($ROOTDIRS))"
# Add a user-defined pattern to the cygpath arguments
if [ "$GRADLE_CYGPATTERN" != "" ] ; then
OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
fi
# Now convert the arguments - kludge to limit ourselves to /bin/sh
i=0
for arg in "$@" ; do
CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
else
eval `echo args$i`="\"$arg\""
fi
i=$((i+1))
done
case $i in
(0) set -- ;;
(1) set -- "$args0" ;;
(2) set -- "$args0" "$args1" ;;
(3) set -- "$args0" "$args1" "$args2" ;;
(4) set -- "$args0" "$args1" "$args2" "$args3" ;;
(5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
(6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
(7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
(8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
(9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
esac
fi
# Split up the JVM_OPTS And GRADLE_OPTS values into an array, following the shell quoting and substitution rules
function splitJvmOpts() {
JVM_OPTS=("$@")
}
eval splitJvmOpts $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS
JVM_OPTS[${#JVM_OPTS[*]}]="-Dorg.gradle.appname=$APP_BASE_NAME"
exec "$JAVACMD" "${JVM_OPTS[@]}" -classpath "$CLASSPATH" org.gradle.wrapper.GradleWrapperMain "$@"
================================================
FILE: gradlew.bat
================================================
@if "%DEBUG%" == "" @echo off
@rem ##########################################################################
@rem
@rem Gradle startup script for Windows
@rem
@rem ##########################################################################
@rem Set local scope for the variables with windows NT shell
if "%OS%"=="Windows_NT" setlocal
@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
set DEFAULT_JVM_OPTS=
set DIRNAME=%~dp0
if "%DIRNAME%" == "" set DIRNAME=.
set APP_BASE_NAME=%~n0
set APP_HOME=%DIRNAME%
@rem Find java.exe
if defined JAVA_HOME goto findJavaFromJavaHome
set JAVA_EXE=java.exe
%JAVA_EXE% -version >NUL 2>&1
if "%ERRORLEVEL%" == "0" goto init
echo.
echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:findJavaFromJavaHome
set JAVA_HOME=%JAVA_HOME:"=%
set JAVA_EXE=%JAVA_HOME%/bin/java.exe
if exist "%JAVA_EXE%" goto init
echo.
echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
echo.
echo Please set the JAVA_HOME variable in your environment to match the
echo location of your Java installation.
goto fail
:init
@rem Get command-line arguments, handling Windowz variants
if not "%OS%" == "Windows_NT" goto win9xME_args
if "%@eval[2+2]" == "4" goto 4NT_args
:win9xME_args
@rem Slurp the command line arguments.
set CMD_LINE_ARGS=
set _SKIP=2
:win9xME_args_slurp
if "x%~1" == "x" goto execute
set CMD_LINE_ARGS=%*
goto execute
:4NT_args
@rem Get arguments from the 4NT Shell from JP Software
set CMD_LINE_ARGS=%$
:execute
@rem Setup the command line
set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
@rem Execute Gradle
"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
:end
@rem End local scope for the variables with windows NT shell
if "%ERRORLEVEL%"=="0" goto mainEnd
:fail
rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
rem the _cmd.exe /c_ return code!
if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
exit /b 1
:mainEnd
if "%OS%"=="Windows_NT" endlocal
:omega
================================================
FILE: jni/Android.mk
================================================
include $(call all-subdir-makefiles)
================================================
FILE: jni/Application.mk
================================================
#APP_ABI := armeabi-v7a
#NDK_TOOLCHAIN_VERSION:=4.8
APP_STL := stlport_static
#APP_STL := stlport_shared
APP_STL := gnustl_static
APP_CPPFLAGS := -frtti -std=c++11
================================================
FILE: jni/highlight/Android.mk
================================================
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := highlight
BOOST_VERSION :=1_53_0
BOOST_VERSION2 :=1_53
MY_LIB_PATH :=$(LOCAL_PATH)/../../../lib
BOOST_INCLUDE_PATH :=$(MY_LIB_PATH)/boost_$(BOOST_VERSION)/include
BOOST_LIB_PATH :=$(MY_LIB_PATH)/boost_$(BOOST_VERSION)/armeabi/lib
LUA_INCLUDE_PATH :=$(LOCAL_PATH)/../lua
LOCAL_C_INCLUDES := $(LOCAL_PATH)/include \
$(BOOST_INCLUDE_PATH) \
$(LUA_INCLUDE_PATH) \
$(LOCAL_PATH)/android/ \
$(LOCAL_PATH)/cli/ \
LOCAL_SRC_FILES := $(subst $(LOCAL_PATH)/,, \
$(wildcard $(LOCAL_PATH)/core/*.cpp) \
$(wildcard $(LOCAL_PATH)/core/astyle/*.cpp) \
$(wildcard $(LOCAL_PATH)/core/Diluculum/*.cpp) \
$(wildcard $(LOCAL_PATH)/android/*.cpp) \
$(wildcard $(LOCAL_PATH)/cli/*.cpp) \
$(wildcard $(LOCAL_PATH)/cli/*.cc) \
$(wildcard $(LOCAL_PATH)/android/*.cc) ) \
LOCAL_LDLIBS += -L$(BOOST_LIB_PATH) \
-lboost_system-gcc-mt-$(BOOST_VERSION2) \
-lboost_thread-gcc-mt-$(BOOST_VERSION2) \
LOCAL_SHARED_LIBRARIES := lua
#LOCAL_STATIC_LIBRARIES := lua
LOCAL_LDLIBS := -llog
LOCAL_CFLAGS +=
LOCAL_CPPFLAGS := -std=c++11 -fpermissive -fexceptions -g -DANDROID
LOCAL_ARM_MODE := arm
include $(BUILD_SHARED_LIBRARY)
#include $(BUILD_EXECUTABLE)
================================================
FILE: jni/highlight/android/app.cpp
================================================
/* Copyright (C) 2015 evilbinary.
* rootdebug@163.com
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see