HomeSort by relevance Sort by last modified time
    Searched refs:viewGroup (Results 1 - 14 of 14) 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 30 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 46 import android.view.ViewGroup;
102 public View onCreateView(LayoutInflater inflater, ViewGroup container,
129 viewGroup(groupListItem.getUri());
230 viewGroup(mSelectedGroupUri);
251 private void viewGroup(Uri groupUri) {
257 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...]