Home
last modified time | relevance | path

Searched refs:LayoutParams (Results 1 – 12 of 12) sorted by relevance

/sdk/templates/activities/FullscreenActivity/root/src/app_package/util/
DSystemUiHiderBase.java.ftl30 WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN
31 | WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS,
32 WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN
33 | WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
46 WindowManager.LayoutParams.FLAG_FULLSCREEN,
47 WindowManager.LayoutParams.FLAG_FULLSCREEN);
58 WindowManager.LayoutParams.FLAG_FULLSCREEN);
DSystemUiHiderHoneycomb.java.ftl106 WindowManager.LayoutParams.FLAG_FULLSCREEN,
107 WindowManager.LayoutParams.FLAG_FULLSCREEN);
123 WindowManager.LayoutParams.FLAG_FULLSCREEN);
DSystemUiHider.java.ftl24 * @see android.view.WindowManager.LayoutParams#FLAG_FULLSCREEN
29 * {@link android.view.WindowManager.LayoutParams#FLAG_LAYOUT_IN_SCREEN}
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/view/
DViewGroup.java21 public class MarginLayoutParams extends LayoutParams {
25 public class LayoutParams { class in ViewGroup
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/checks/data/apicheck/
DSuppressTest1.java.txt7 import android.view.ViewGroup.LayoutParams;
36 int fillParent = LayoutParams.FILL_PARENT; // API 1
38 int matchParent = LayoutParams.MATCH_PARENT; // API 8
63 int fillParent = LayoutParams.FILL_PARENT; // API 1
65 int matchParent = LayoutParams.MATCH_PARENT; // API 8
90 int fillParent = LayoutParams.FILL_PARENT; // API 1
92 int matchParent = LayoutParams.MATCH_PARENT; // API 8
117 int fillParent = LayoutParams.FILL_PARENT; // API 1
119 int matchParent = LayoutParams.MATCH_PARENT; // API 8
DApiCallTest.java.txt7 import android.view.ViewGroup.LayoutParams;
34 int fillParent = LayoutParams.FILL_PARENT; // API 1
36 int matchParent = LayoutParams.MATCH_PARENT; // API 8
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/widget/
DLinearLayout.java23 public class LayoutParams extends mock_android.view.ViewGroup.LayoutParams { class in LinearLayout
DTableLayout.java23 public class LayoutParams extends MarginLayoutParams { class in TableLayout
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/sdk/
DLayoutParamsParserTest.java69 … mTopLayoutParamsClass = new ClassWrapper(mock_android.view.ViewGroup.LayoutParams.class); in MockLayoutParamsParser()
91 assertEquals(mock_android.view.ViewGroup.LayoutParams.class, in testFindLayoutParams()
94 assertEquals(mock_android.widget.LinearLayout.LayoutParams.class, in testFindLayoutParams()
97 assertEquals(mock_android.widget.TableLayout.LayoutParams.class, in testFindLayoutParams()
103 mock_android.view.ViewGroup.LayoutParams.class); in testGetLayoutParamsInfo()
109 mock_android.widget.LinearLayout.LayoutParams.class); in testGetLayoutParamsInfo()
115 mock_android.widget.TableLayout.LayoutParams.class); in testGetLayoutParamsInfo()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DIconEditor.java86 LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(iconSize, iconSize); in bindEditor()
90 FrameLayout.LayoutParams flp = new FrameLayout.LayoutParams( in bindEditor()
91 ViewGroup.LayoutParams.MATCH_PARENT, in bindEditor()
92 ViewGroup.LayoutParams.MATCH_PARENT); in bindEditor()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/
DNotificationStudioActivity.java40 import android.widget.FrameLayout.LayoutParams;
100 FrameLayout.LayoutParams lp = (LayoutParams) e.getLayoutParams(); in initPreviewScroller()
/sdk/apps/DeviceConfig/src/com/example/android/deviceconfig/
DMyActivity.java54 ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(1, 1); in onCreate()