Home
last modified time | relevance | path

Searched refs:checkBox (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
DVectorCheckbox.java60 CheckBox checkBox = new CheckBox(this); in onCreate() local
61 bArray[i] = checkBox; in onCreate()
62 checkBox.setWidth(200); in onCreate()
63 checkBox.setButtonDrawable(icon[i]); in onCreate()
64 container.addView(checkBox); in onCreate()
/frameworks/support/samples/Support7Demos/src/main/java/com/example/android/supportv7/widget/
DBaseLayoutManagerActivity.java112 final CheckBox checkBox = findViewById(R.id.enable_smooth_scroll);
122 final boolean smooth = checkBox.isChecked();
DAnimatedRecyclerView.java704 myViewHolder.checkBox.setChecked(selected); in onBindViewHolder()
729 public CheckBox checkBox; field in MyViewHolder
735 checkBox = (CheckBox) v.findViewById(R.id.selected); in MyViewHolder()
/frameworks/layoutlib/bridge/tests/res/testApp/MyApplication/build/intermediates/classes/debug/com/android/layoutlib/test/myapplication/
DR$id.classR.java package com.android.layoutlib.test.myapplication public final com.android. ...
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
DTwoWayBindingAdapterTest.java188 makeVisible(mBinder.checkBox); in testCheckBoxChecked()
193 assertFalse(mBinder.checkBox.isChecked()); in testCheckBoxChecked()
194 mBinder.checkBox.setChecked(true); in testCheckBoxChecked()
206 assertTrue(mBinder.checkBox.isChecked()); in testCheckBoxChecked()
536 makeVisible(mBinder.checkBox, mBinder.checkBox2); in testChaining()
779 mBinder.checkBox.setVisibility(View.GONE); in makeVisible()