Android Open Source - SampleCustomView Custom View Activity






From Project

Back to project page SampleCustomView.

License

The source code is released under:

Apache License

If you think the Android project SampleCustomView listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.imran.samplecustomview;
//from w  w w .  j  a va2  s.c o m
import android.app.Activity;
import android.graphics.Typeface;
import android.os.Bundle;
import android.view.Menu;
import android.widget.TextView;

public class CustomViewActivity extends Activity implements CustomView.OnColorChangeListener{

    CustomView mCustomView;
    TextView mTextView;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_custom);
        mCustomView = (CustomView) findViewById(R.id.custom);
        mCustomView.setOnColorChangedListener(this);

        mTextView = (TextView) findViewById(R.id.text_view);
        mTextView.setTypeface(Typeface.createFromAsset(getAssets(), "fonts/Roboto-Thin.ttf"));

    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        //getMenuInflater().inflate(R.menu.custom_view, menu);
        return true;
    }

    @Override
    public void onColorChanged(String color) {
        mTextView.setText("Background color set to " + color);
    }
}




Java Source Code List

com.imran.samplecustomview.CustomViewActivity.java
com.imran.samplecustomview.CustomView.java
com.imran.samplecustomview.MainActivity.java