Android Custom Views
Some times we need very personalized views or you can say very personalized behavior of the android views. For this purpose android provides the support for the custom views. We can create our own views and define there behavior as our needs.If we just need to make the little adjustments to the existing views like Button, EditText, ListView, Layouts or any other view, we can simply do that by extending the predefined view to our own classes and change there characteristics.
Use Case
Some of the example use cases for custom views are as follows:
- A control with some predefined images.
- Group of perdefined views to use throughout our app.
- Change look and feel of predefined views.
- Custom behavior on onClick(), onFocusChanged(), onLongPressed() etc. events.
@Override
You can override a list of method of the views after extending them to your own class you change there behavior. You can override
SquareImage.java
Now to use this class, all you have to do is
Similarly, if you want to change the font of all the EditTexts of your app, you just need to extend the already existing Edittext with you class and change the font style. You can find the class as follow:- onDraw()
- onMeasure()
- onKeyDown()
- setMeasuredDimension(int width, int height)
and many more methods. Now your methods will be called instead of the parent class on the specified events. All you have to do is use your own class name in the XML to use them and provide there attributes.
Example
For an example, we will create our own image view which shows the square images rather than the original dimension of the image. For this purpose, all we have to do is just extend the imageView class to our own class and define the custom behavior. following is the code for the class.
SquareImage.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.androidtechpoint.Util; | |
import android.content.Context; | |
import android.util.AttributeSet; | |
import android.widget.ImageView; | |
/** | |
* Created by Farooq Khan on 6/27/2017. | |
*/ | |
public class SquareImage extends ImageView { | |
public SquareImage(Context context) { | |
super(context); | |
} | |
public SquareImage(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
} | |
public SquareImage(Context context, AttributeSet attrs, int defStyle) { | |
super(context, attrs, defStyle); | |
} | |
@Override | |
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { | |
super.onMeasure(widthMeasureSpec, heightMeasureSpec); | |
setMeasuredDimension(getMeasuredWidth(), getMeasuredWidth()); //Snap to width | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<com.androidtechpoint.Util.SquareImage | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:src="@drawable/you_image_name"/> |
CustomEditText.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.androidtechpoint.Util; | |
import android.content.Context; | |
import android.graphics.Typeface; | |
import android.util.AttributeSet; | |
import android.widget.EditText; | |
/** | |
* Created by farooq on 8/8/2017. | |
*/ | |
public class CustomEditText extends android.support.v7.widget.AppCompatEditText { | |
public CustomEditText(Context context, AttributeSet attrs, int defStyle) { | |
super(context, attrs, defStyle); | |
init(); | |
} | |
public CustomEditText(Context context, AttributeSet attrs) { | |
super(context, attrs); | |
init(); | |
} | |
public CustomEditText(Context context) { | |
super(context); | |
init(); | |
} | |
private void init() { | |
if (!isInEditMode()) { | |
setTypeface(Typeface.MONOSPACE); | |
} | |
} | |
} |
If you still get the error feel free to comment below or contact me at farooqahmadkhan003@gmail.com. Happy Coding!!
This comment has been removed by a blog administrator.
ReplyDelete