I am an android newbie also not very affluent with java. I am trying to to understand MobiStego source code.
Hence the following is a part of the project code I fail to understand fully.
Please help....
private void initClickListner()
{
Button buttonEncode = (Button) findViewById(R.id.ButtonEncode);
buttonEncode.setOnClickListener(new Button.OnClickListener()
{
public void onClick(View v) {
Intent intent = new Intent();
intent.setComponent(new ComponentName(EncodeActivity.class.getPackage().getName(),
EncodeActivity.class.getCanonicalName()));
startActivity(intent);
}
}
);