OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:themeInfo
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/holo/src/android/holo/cts/
BitmapAssets.java
26
import android.holo.cts.ThemeAdapter.
ThemeInfo
;
92
public static String getBitmapName(
ThemeInfo
themeInfo
, LayoutInfo layoutInfo) {
93
return
themeInfo
.getBitmapName() + "_" + layoutInfo.getBitmapName();
ThemeAdapter.java
33
static class
ThemeInfo
{
38
private
ThemeInfo
(String name, int theme, String fileName) {
57
private final List<
ThemeInfo
> mThemeInfos = new ArrayList<
ThemeInfo
>();
165
mThemeInfos.add(new
ThemeInfo
(name, theme, fileNamePrefix));
174
public
ThemeInfo
getItem(int position) {
192
ThemeInfo
themeInfo
= getItem(position);
193
textView.setText(
themeInfo
.mName);
LayoutTestActivity.java
27
import android.holo.cts.ThemeAdapter.
ThemeInfo
;
74
ThemeInfo
themeInfo
= themeAdapter.getItem(themeIndex);
76
mBitmapName = BitmapAssets.getBitmapName(
themeInfo
, layoutInfo);
78
setTheme(
themeInfo
.getTheme());
Completed in 48 milliseconds