HomeSort by relevance Sort by last modified time
    Searched refs:viewGroup (Results 1 - 12 of 12) sorted by null

  /packages/apps/Email/src/com/android/email/view/
NonLockingScrollView.java 25 import android.view.ViewGroup;
106 } else if (node instanceof ViewGroup) {
107 ViewGroup viewGroup = (ViewGroup) node;
108 final int childCount = viewGroup.getChildCount();
110 final View child = viewGroup.getChildAt(i);
  /packages/apps/Mms/src/com/android/mms/ui/
DeliveryReportAdapter.java 24 import android.view.ViewGroup;
40 public View getView(int position, View view, ViewGroup viewGroup) {
47 R.layout.delivery_report_list_item, viewGroup, false);
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
IntegrationTestUtils.java 28 import android.view.ViewGroup;
164 * This method will recurse down through all {@link ViewGroup} instances looking for
178 if (parent instanceof ViewGroup) {
179 ViewGroup viewGroup = (ViewGroup) parent;
180 for (int i = 0; i < viewGroup.getChildCount(); ++i) {
181 results.addAll(getAllViews(clazz, viewGroup.getChildAt(i)));
  /external/jmonkeyengine/engine/src/android/jme3test/android/
DemoLaunchAdapter.java 7 import android.view.ViewGroup;
41 public View getView(int position, View convertView, ViewGroup viewGroup) {
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java 38 import android.view.ViewGroup;
100 public View onCreateView(LayoutInflater inflater, ViewGroup container,
127 viewGroup(groupListItem.getUri());
228 viewGroup(mSelectedGroupUri);
249 private void viewGroup(Uri groupUri) {
255 viewGroup(groupUri);
  /packages/apps/Phone/src/com/android/phone/
ManageConferenceUtils.java 23 import android.view.ViewGroup;
68 // get the viewgroup (conference call list item) and make it visible
69 ViewGroup viewGroup = mConferenceCallList[mConferencCallListIndex];
70 viewGroup.setVisibility(View.VISIBLE);
74 (TextView) viewGroup.findViewById(R.id.conferenceCallerName),
75 (TextView) viewGroup.findViewById(R.id.conferenceCallerNumberType),
76 (TextView) viewGroup.findViewById(R.id.conferenceCallerNumber));
84 private ViewGroup mManageConferencePanel;
86 private ViewGroup[] mConferenceCallList
    [all...]
  /frameworks/base/core/java/android/view/
LayoutInflater.java 326 * which is not allowed by the {@link Filter}, the {@link #inflate(int, ViewGroup)} call will
351 public View inflate(int resource, ViewGroup root) {
371 public View inflate(XmlPullParser parser, ViewGroup root) {
392 public View inflate(int resource, ViewGroup root, boolean attachToRoot) {
424 public View inflate(XmlPullParser parser, ViewGroup root, boolean attachToRoot) {
456 + "ViewGroup root and attachToRoot=true");
469 ViewGroup.LayoutParams params = null;
741 final ViewGroup viewGroup = (ViewGroup) parent
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
SimpleCursorAdapterTest.java 30 import android.view.ViewGroup;
309 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
311 View result = mSimpleCursorAdapter.newView(mContext, null, viewGroup);
323 ViewGroup viewGroup = (ViewGroup) layoutInflater.inflate(
325 View result = mSimpleCursorAdapter.newDropDownView(null, null, viewGroup);
  /cts/tests/tests/view/src/android/view/cts/
ViewTest.java 63 import android.view.ViewGroup;
233 ViewGroup parent = (ViewGroup) mActivity.findViewById(R.id.viewlayout_root);
249 final int WRAP_CONTENT = ViewGroup.LayoutParams.WRAP_CONTENT;
275 ViewGroup viewGroup = (ViewGroup) mActivity.findViewById(R.id.viewlayout_root);
283 viewGroup.setTag(viewData);
284 viewGroup.setFocusable(true);
285 assertSame(viewData, viewGroup.getTag())
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 38 import android.view.ViewGroup;
78 ViewGroup viewGroup = (ViewGroup) findViewById(R.id.container);
79 viewGroup.addView(view);
  /packages/apps/MusicFX/src/com/android/musicfx/
ActivityMusic.java 46 import android.view.ViewGroup;
266 final ViewGroup viewGroup = (ViewGroup) findViewById(R.id.contentSoundEffects);
298 setEnabledAllChildren(viewGroup, isChecked);
441 viewGroup.setVisibility(View.GONE);
546 * @param viewGroup
549 private void setEnabledAllChildren(final ViewGroup viewGroup, final boolean enabled) {
550 final int count = viewGroup.getChildCount()
    [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 77 import android.view.ViewGroup;
78 import android.view.ViewGroup.LayoutParams;
79 import android.view.ViewGroup.MarginLayoutParams;
119 private ViewGroup mViewRoot;
231 ViewGroup backgroundView = null;
603 private Pair<Integer, Integer> measureView(ViewGroup viewToMeasure, View measuredView,
684 public Result insertChild(final ViewGroup parentView, ILayoutPullParser childXml,
746 private Result addView(ViewGroup parent, View view, int index) {
    [all...]

Completed in 576 milliseconds