List of usage examples for android.view View.OnClickListener interface-usage
From source file com.actinarium.kinetic.ui.RecordFragment.java
/** * A fragment for welcome screen with record button. Since it's the only button on the screen, we can avoid anonymous * classes and make the fragment a listener for the button itself */ public class RecordFragment extends Fragment implements View.OnClickListener, DataRecorder.Callback {
From source file com.wooi.vibox.demo.MainActivity.java
/**
* DEMO ??
*
* @author wooi
* @since 2015-8-21
*/
From source file br.liveo.ndrawer.ui.fragment.FragmentContactus.java
public class FragmentContactus extends Fragment implements View.OnClickListener { private boolean mSearchCheck; private static final String TEXT_FRAGMENT = "TEXT_FRAGMENT"; ImageView ivliveo1, ivliveo2, ivliveo3, ivliveo4, ivliveo5, ivliveo6, ivliveo7, ivliveo8; TextView tvliveo1, tvliveo2, tvliveo3, tvliveo4, tvliveo5, tvliveo6, tvliveo7, tvliveo8;
From source file com.aprz.easy_iosched.ui.widget.CustomRatingBar.java
/**
* Replacement for a {@link android.widget.RatingBar} widget for providing ratings for sessions.
* Provides ease of use for accessibility for use with Talkback and other assistive technologies.
* <p/>
* TODO: add explanation of attributes.
*/
From source file com.byteshaft.licenseservice.StartTestActivity.java
public class StartTestActivity extends AppCompatActivity implements View.OnClickListener { private String currentCategory = ""; private final int ICAC_QUESTIONS = 2; private int ASKED_ICAC_QUESTIONS = 0; private final int GENERAL_KNOWLEDGE_QUESTIONS = 14;
From source file br.gbizotto.customcamera.camera2.Camera2BasicFragment.java
@RequiresApi(api = 21) public class Camera2BasicFragment extends Fragment implements View.OnClickListener, ActivityCompat.OnRequestPermissionsResultCallback, PictureTaken { private static final int REQUEST_CAMERA_PERMISSION = 1;
From source file br.com.frs.foodrestrictions.FoodIconConfig.java
public class FoodIconConfig extends Fragment implements View.OnClickListener { private CheckBox cbDontEatCow; private CheckBox cbAllergicCow; private CheckBox cbDontEatChicken;
From source file com.liferay.tasks.activity.AddTaskActivity.java
/** * @author Silvio Santos */ public class AddTaskActivity extends Activity implements View.OnClickListener { public static final String EXTRA_TASK = "task";
From source file com.android.talkbacktests.testsession.PopupViewTest.java
public class PopupViewTest extends BaseTestContent implements View.OnClickListener { private static final Integer[] sWindowHeight = new Integer[] { ViewGroup.LayoutParams.WRAP_CONTENT, 200, 400, 600, 800 }; private static final Integer[] sListSize = new Integer[] { 1, 2, 3, 5, 10, 20 };
From source file alexander.martinz.libs.materialpreferences.MaterialEditTextPreference.java
public class MaterialEditTextPreference extends MaterialPreference implements View.OnClickListener { private boolean mInit; private EditText mEditTextValue; private String mDefaultValue;