Difference and uses of onCreate(), onCreateView() and onActivityCreated() in fragments

A Fragment is a piece of an application's user interface or behavior that can be placed in an Activity. Interaction with fragments is done through FragmentManager, which can be obtained via Activity.getFragmentManager() and Fragment.getFragmentManager().

   he core series of lifecycle methods that are called to bring a fragment up to resumed state (interacting with the user) are:
  1. onCreate(Bundle) called to do initial creation of the fragment.
  2. onCreateView(LayoutInflater, ViewGroup, Bundle) creates and returns the view hierarchy associated with the fragment.
  3. onActivityCreated(Bundle) tells the fragment that its activity has completed its own Activity.onCreate().
onCreate():

The onCreate() method in a Fragment is called after the Activity's onAttachFragment() but before that Fragment's onCreateView().
In this method, you can assign variables, get Intent extras, and anything else that doesn't involve the View hierarchy (i.e. non-graphical initialisations). This is because this method can be called when the Activity's onCreate() is not finished, and so trying to access the View hierarchy here may result in a crash.

defined syntax:
void onCreate (Bundle savedInstanceState)
Here is the some code, how to declare:
public void onCreate(Bundle savedInstanceState) {
    // ...
    if (savedInstanceState == null) {
        FragmentManager fragmentManager = getFragmentManager()
        // Or: FragmentManager fragmentManager = getSupportFragmentManager()
        FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
        ExampleFragment fragment = new ExampleFragment();
        fragmentTransaction.add(R.id.fragment_container, fragment);
        fragmentTransaction.commit();
    }
}
This is called after onAttach(Activity) and before onCreateView(LayoutInflater, ViewGroup, Bundle), but is not called if the fragment instance is retained across Activity re-creation (see setRetainInstance(boolean)).

onCreateView():
After the onCreate() is called (in the Fragment), the Fragment's onCreateView() is called. You can assign your View variables and do any graphical initialisations. You are expected to return a View from this method, and this is the main UI view, but if your Fragment does not use any layouts or graphics, you can return null (happens by default if you don't override).

defined syntax:
View onCreateView (LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState)
Here is the code, how to declare:
public class FirstFragment extends Fragment implements OnClickListener {

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.first_fragment,
                                     container, false);

        Button nextButton = (Button) view.findViewById(R.id.button_first);
        nextButton.setOnClickListener(this);

        return view;
    }

    // ...
}

This will be called between onCreate(Bundle) and onActivityCreated(Bundle)



onActivityCreated():
As the name states, this is called after the Activity's onCreate() has completed. It is called after onCreateView(), and is mainly used for final initialisations (for example, modifying UI elements).If your view is static, then moving any code to the onActivityCreated method is not necessary. But when you - for instance, fill some lists from the adapter, then you should do it in the onActivityCreated method as well as restoring the view state when setRetainInstance used to do so.


defined syntax:
void onActivityCreated (Bundle savedInstanceState)
Here is the come code how to declare:
public class TestFragment extends Fragment
{
 @Override
 public void onActivityCreated(Bundle savedInstanceState) 
 {
  super.onActivityCreated(savedInstanceState);
  
 }
 @Override
 public View onCreateView(WebInflater inflater, ViewGroup container,
   Bundle savedInstanceState)
 {
  return inflater.inflate(R.web.fragment_web, container, false);
 }
}



This is called after onCreateView(LayoutInflater, ViewGroup, Bundle) and before onViewStateRestored(Bundle).

 This information taken from android official website: developer.android.com
 Someone ask and Farbod reply nicely on stackoverflow
 and beutiful explanation of fragment and its use in Newcircle.


 Happy Coding!!!

Android color code in xml

Here is the some listing android color code defined in xml, you must define in res/values/colors.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <color name="White">#FFFFFF</color>
 <color name="Ivory">#FFFFF0</color>
 <color name="LightYellow">#FFFFE0</color>
 <color name="Yellow">#FFFF00</color>
 <color name="Snow">#FFFAFA</color>
 <color name="FloralWhite">#FFFAF0</color>
 <color name="LemonChiffon">#FFFACD</color>
 <color name="Cornsilk">#FFF8DC</color>
 <color name="Seashell">#FFF5EE</color>
 <color name="LavenderBlush">#FFF0F5</color>
 <color name="PapayaWhip">#FFEFD5</color>
 <color name="BlanchedAlmond">#FFEBCD</color>
 <color name="MistyRose">#FFE4E1</color>
 <color name="Bisque">#FFE4C4</color>
 <color name="Moccasin">#FFE4B5</color>
 <color name="NavajoWhite">#FFDEAD</color>
 <color name="PeachPuff">#FFDAB9</color>
 <color name="Gold">#FFD700</color>
 <color name="Pink">#FFC0CB</color>
 <color name="LightPink">#FFB6C1</color>
 <color name="Orange">#FFA500</color>
 <color name="LightSalmon">#FFA07A</color>
 <color name="DarkOrange">#FF8C00</color>
 <color name="Coral">#FF7F50</color>
 <color name="HotPink">#FF69B4</color>
 <color name="Tomato">#FF6347</color>
 <color name="OrangeRed">#FF4500</color>
 <color name="DeepPink">#FF1493</color>
 <color name="Fuchsia">#FF00FF</color>
 <color name="Magenta">#FF00FF</color>
 <color name="Red">#FF0000</color>
 <color name="OldLace">#FDF5E6</color>
 <color name="LightGoldenrodYellow">#FAFAD2</color>
 <color name="Linen">#FAF0E6</color>
 <color name="AntiqueWhite">#FAEBD7</color>
 <color name="Salmon">#FA8072</color>
 <color name="GhostWhite">#F8F8FF</color>
 <color name="MintCream">#F5FFFA</color>
 <color name="WhiteSmoke">#F5F5F5</color>
 <color name="Beige">#F5F5DC</color>
 <color name="Wheat">#F5DEB3</color>
 <color name="SandyBrown">#F4A460</color>
 <color name="Azure">#F0FFFF</color>
 <color name="Honeydew">#F0FFF0</color>
 <color name="AliceBlue">#F0F8FF</color>
 <color name="Khaki">#F0E68C</color>
 <color name="LightCoral">#F08080</color>
 <color name="PaleGoldenrod">#EEE8AA</color>
 <color name="Violet">#EE82EE</color>
 <color name="DarkSalmon">#E9967A</color>
 <color name="Lavender">#E6E6FA</color>
 <color name="LightCyan">#E0FFFF</color>
 <color name="BurlyWood">#DEB887</color>
 <color name="Plum">#DDA0DD</color>
 <color name="Gainsboro">#DCDCDC</color>
 <color name="Crimson">#DC143C</color>
 <color name="PaleVioletRed">#DB7093</color>
 <color name="Goldenrod">#DAA520</color>
 <color name="Orchid">#DA70D6</color>
 <color name="Thistle">#D8BFD8</color>
 <color name="LightGrey">#D3D3D3</color>
 <color name="Tan">#D2B48C</color>
 <color name="Chocolate">#D2691E</color>
 <color name="Peru">#CD853F</color>
 <color name="IndianRed">#CD5C5C</color>
 <color name="MediumVioletRed">#C71585</color>
 <color name="Silver">#C0C0C0</color>
 <color name="DarkKhaki">#BDB76B</color>
 <color name="RosyBrown">#BC8F8F</color>
 <color name="MediumOrchid">#BA55D3</color>
 <color name="DarkGoldenrod">#B8860B</color>
 <color name="FireBrick">#B22222</color>
 <color name="PowderBlue">#B0E0E6</color>
 <color name="LightSteelBlue">#B0C4DE</color>
 <color name="PaleTurquoise">#AFEEEE</color>
 <color name="GreenYellow">#ADFF2F</color>
 <color name="LightBlue">#ADD8E6</color>
 <color name="DarkGray">#A9A9A9</color>
 <color name="Brown">#A52A2A</color>
 <color name="Sienna">#A0522D</color>
 <color name="YellowGreen">#9ACD32</color>
 <color name="DarkOrchid">#9932CC</color>
 <color name="PaleGreen">#98FB98</color>
 <color name="DarkViolet">#9400D3</color>
 <color name="MediumPurple">#9370DB</color>
 <color name="LightGreen">#90EE90</color>
 <color name="DarkSeaGreen">#8FBC8F</color>
 <color name="SaddleBrown">#8B4513</color>
 <color name="DarkMagenta">#8B008B</color>
 <color name="DarkRed">#8B0000</color>
 <color name="BlueViolet">#8A2BE2</color>
 <color name="LightSkyBlue">#87CEFA</color>
 <color name="SkyBlue">#87CEEB</color>
 <color name="Gray">#808080</color>
 <color name="Olive">#808000</color>
 <color name="Purple">#800080</color>
 <color name="Maroon">#800000</color>
 <color name="Aquamarine">#7FFFD4</color>
 <color name="Chartreuse">#7FFF00</color>
 <color name="LawnGreen">#7CFC00</color>
 <color name="MediumSlateBlue">#7B68EE</color>
 <color name="LightSlateGray">#778899</color>
 <color name="SlateGray">#708090</color>
 <color name="OliveDrab">#6B8E23</color>
 <color name="SlateBlue">#6A5ACD</color>
 <color name="DimGray">#696969</color>
 <color name="MediumAquamarine">#66CDAA</color>
 <color name="CornflowerBlue">#6495ED</color>
 <color name="CadetBlue">#5F9EA0</color>
 <color name="DarkOliveGreen">#556B2F</color>
 <color name="Indigo">#4B0082</color>
 <color name="MediumTurquoise">#48D1CC</color>
 <color name="DarkSlateBlue">#483D8B</color>
 <color name="SteelBlue">#4682B4</color>
 <color name="RoyalBlue">#4169E1</color>
 <color name="Turquoise">#40E0D0</color>
 <color name="MediumSeaGreen">#3CB371</color>
 <color name="LimeGreen">#32CD32</color>
 <color name="DarkSlateGray">#2F4F4F</color>
 <color name="SeaGreen">#2E8B57</color>
 <color name="ForestGreen">#228B22</color>
 <color name="LightSeaGreen">#20B2AA</color>
 <color name="DodgerBlue">#1E90FF</color>
 <color name="MidnightBlue">#191970</color>
 <color name="Aqua">#00FFFF</color>
 <color name="Cyan">#00FFFF</color>
 <color name="SpringGreen">#00FF7F</color>
 <color name="Lime">#00FF00</color>
 <color name="MediumSpringGreen">#00FA9A</color>
 <color name="DarkTurquoise">#00CED1</color>
 <color name="DeepSkyBlue">#00BFFF</color>
 <color name="DarkCyan">#008B8B</color>
 <color name="Teal">#008080</color>
 <color name="Green">#008000</color>
 <color name="DarkGreen">#006400</color>
 <color name="Blue">#0000FF</color>
 <color name="MediumBlue">#0000CD</color>
 <color name="DarkBlue">#00008B</color>
 <color name="Navy">#000080</color>
 <color name="Black">#000000</color>
</resources>


you can use simply:



int myColor = getResources().getColor(R.color.myColor);
Then, to use this color in a TextView, use the following:

myTextView.setTextColor(myColor);


In Xml
android:drawable="@color/YOUR_COLOR_HERE"
android:textColor="@color/text_color"

Source: stackoverflow

Android Developer Conference in November 2016


The Android Developer Conference is seeking proposals from speakers for half-day (3 hours and 15 minutes) tutorials, full-day (6 hours and 30 minutes) tutorials as well as 75-minute, and two-part (150 minutes) technical classes for its Burlingame, Calif. show, Nov. 29 - Dec. 1, 2016.

AnDevCon is the technical conference for professional software developers and engineers developing for the Android platform.

With 3 packed days, you will take your Android development skills to the next level with in-depth Android development tutorials and classes.




ACCELERATE YOUR ANDROID DEVELOPMENT!


From mobile app development training to embedded Android and the Internet of Things, AnDevCon offers the most comprehensive program with countless sessions and networking opportunities. Roll-up your sleeves, dive into code, and implement what you learn immediately.



Here is the more details: http://www.andevcon.com/

N Developer Preview and version of the Android platform up to August 1

The N Developer Preview runs from 9 March 2016 until the final Android N public release to AOSP and OEMs, planned for Q3 2016.

At key development milestones, we’ll deliver updates for your development and testing environment. In general you can expect an update each month (4 to 6 week interval). The milestones are listed below.
  • Preview 1 (initial release, alpha)
  • Preview 2 (incremental update, alpha)
  • Preview 3 (incremental update, beta)
  • Preview 4 (final APIs and official SDK, Play publishing)
  • Preview 5 (near-final system images for final testing)
  • Final release to AOSP and ecosystem
Each update includes SDK tools, preview system images, emulators, reference documentation, and API diffs.

and 

This section provides data about the relative number of devices running a given version of the Android platform.
For information about how to target your application to devices based on platform version, read Supporting Different Platform Versions.
VersionCodenameAPIDistribution
2.2Froyo80.1%
2.3.3 -
2.3.7
Gingerbread101.7%
4.0.3 -
4.0.4
Ice Cream Sandwich151.6%
4.1.xJelly Bean166.0%
4.2.x178.3%
4.3182.4%
4.4KitKat1929.2%
5.0Lollipop2114.1%
5.12221.4%
6.0Marshmallow2315.2%
Data collected during a 7-day period ending on August 1, 2016.
Any versions with less than 0.1% distribution are not shown.

appcompat-v7:21.0.0': No resource found that matches the given name: attr 'android:actionModeShareDrawable' in Android

If you faced appcompat-v7:21.0.0': No resource found that matches the given name: attr 'android:actionModeShareDrawable' error on during developing android application.

Here is the solution in Android studio, Eclipse and  IntelliJ IDEA.

Prerequirements
Make sure that you've downloaded the latest extras as well as the Android 5.0 SDK via the SDK-Manager.
Picture of the SDK Manager


Android Studio:

Open the build.gradle file of your app-module and change your compileSdkVersion to 21. It's basically not necessary to change the targetSdkVersion SDK-Version to 21 but it's recommended since you should always target the latest android Build-Version.
In the end you gradle-file will look like this:
android {
    compileSdkVersion 21
    // ...

    defaultConfig {
        // ...
        targetSdkVersion 21
    }
}
Be sure to sync your project afterwards.
Android Studio Gradle Sync reminder


Eclipse:

The only thing you have to do is to open the project.properties file of the android-support-v7-appcompat and change the target from target=android-19 to target=android-21.
Afterwards just do a Project --> Clean... so that the changes take effect.


IntelliJ IDEA:

Right click on appcompat module --> Open Module Settings (F4) --> [Dependency Tab] Select Android API 21 Platform from the dropdown --> Apply
Select API 21 Platform
Then just rebuild the project (Build --> Rebuild Project) and you're good to go.

Sometimes , If above solution doesnot work then try this
Haven't set compileSdkVersion to 21 in your build.gradle file and change targetSdkVersion to 21.
android {
    //...
    compileSdkVersion 21

    defaultConfig {
        targetSdkVersion 21
    }
    //...
}
This requires you to have downloaded the latest SDK updates to begin with.
Android Studio SDK Manager
Once  downloaded all the updates (don't forget to also update the Android Support Library/Repository, too!) and updated your compileSdkVersion, re-sync Gradle project.
Edit: For Eclipse or general IntelliJ users


Happy Coding!!!

How to save, retrieve and remove in android using SharedPreferences

Interface for accessing and modifying preference data returned by getSharedPreferences(String, int). For any particular set of preferences, there is a single instance of this class that all clients share. Modifications to the preferences must go through an SharedPreferences.Editor object to ensure the preference values remain in a consistent state and control when they are committed to storage. Objects that are returned from the various get methods must be treated as immutable by the application.

Save on SharedPreferences

 // Saving Data on Shared preference for offline storage, here store json string in private mode, ie accessiable to only this application  
      public void saveDataOnSharedPreference(Context applicationContext,String JsonSting) {  
           // TODO Auto-generated method stub  
           SharedPreferences settings;  
           Editor editor;  
           settings = applicationContext.getSharedPreferences("JSONPREFERENCES", Context.MODE_PRIVATE); // 1  
           editor = settings.edit(); // 2  
           editor.putString(JSONPPREFSTOREKEY, JsonSting); // 3  
           editor.commit(); // 4  
      }  


Retrieve on SharedPreferences

 // Getting saved data on sharedpreference in android  
      public String getDataFromSharedPreference(Context context) {  
           SharedPreferences settings;  
           String jsonString;  
           settings = context.getSharedPreferences(JSONPREFERENCES, Context.MODE_PRIVATE); // 1  
           jsonString = settings.getString("JSONPREFERENCES", null); // 2  
           return jsonString;  
      }  

Remove on SharedPreferences



      // remove or clear json data from the shared preference, when internet connection is aviable  
      public void removeDataFromSharedPreference(Context applicationContext) {  
           SharedPreferences settings;  
           Editor editor;  
           settings = applicationContext.getSharedPreferences("JSONPREFERENCES", Context.MODE_PRIVATE); // 1  
           editor = settings.edit(); // 2  
           editor.remove("JSONPPREFSTOREKEY"); // 3  
           editor.commit(); // 4  
      }  


Happy Coding !!!

Auto Realizable or Auto Fit TextView in android or android studio

Displays text to the user and optionally allows them to edit it. A TextView is a complete text editor, however the basic class is configured to not allow editing; see EditText for a subclass that configures the text view for editing.

Sometimes, we need auto fit textview, as required input value, Here is the simple tutorials for this.

First method, you have to define layout file,

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
   android:layout_width="wrap_content"  
   android:layout_height="wrap_content"  
   android:orientation="vertical"  
   android:padding="16dp" >  
   <com.example.autoresizetextview.AutoResizeTextView  
     android:layout_width="match_parent"  
     android:layout_height="100dp"  
     android:ellipsize="none"  
     android:maxLines="2"  
     android:text="Auto Resized Text, maximum 2 lines"  
     android:textSize="100sp" />  
    <com.example.autoresizetextview.AutoResizeTextView  
     android:layout_width="match_parent"  
     android:layout_height="100dp"  
     android:ellipsize="none"  
     android:gravity="center"  
     android:maxLines="1"  
     android:text="Auto Resized Text, maximum 1 line"  
     android:textSize="100sp" />  
  <com.example.autoresizetextview.AutoResizeTextView  
     android:layout_width="match_parent"  
     android:layout_height="100dp"  
     android:ellipsize="none"  
     android:gravity="center"  
     android:maxLines="1"  
     android:text=" maximum 1 line maximum 1 line maximum 1 line maximum 1 line"  
     android:textSize="100sp" />  
   <com.example.autoresizetextview.AutoResizeTextView  
     android:layout_width="match_parent"  
     android:layout_height="wrap_content"  
     android:text="Test Auto Resized Text Any Line"  
     android:textSize="500sp" />  
 </LinearLayout>  


Next Method, you have to create dynamically AutoResizeTextView and add text on that particular Textview .

Now, we create class AutoResizeTextView and put these code

 import android.annotation.TargetApi;  
 import android.content.Context;  
 import android.content.res.Resources;  
 import android.graphics.RectF;  
 import android.os.Build;  
 import android.text.Layout.Alignment;  
 import android.text.StaticLayout;  
 import android.text.TextPaint;  
 import android.util.AttributeSet;  
 import android.util.SparseIntArray;  
 import android.util.TypedValue;  
 import android.widget.TextView;  
 public class AutoResizeTextView extends TextView {  
      private interface SizeTester {  
           /**  
            *   
            * @param suggestedSize  
            *      Size of text to be tested  
            * @param availableSpace  
            *      available space in which text must fit  
            * @return an integer < 0 if after applying {@code suggestedSize} to  
            *     text, it takes less space than {@code availableSpace}, > 0  
            *     otherwise  
            */  
           public int onTestSize(int suggestedSize, RectF availableSpace);  
      }  
      private RectF mTextRect = new RectF();  
      private RectF mAvailableSpaceRect;  
      private SparseIntArray mTextCachedSizes;  
      private TextPaint mPaint;  
      private float mMaxTextSize;  
      private float mSpacingMult = 1.0f;  
      private float mSpacingAdd = 0.0f;  
      private float mMinTextSize = 20;  
      private int mWidthLimit;  
      private static final int NO_LINE_LIMIT = -1;  
      private int mMaxLines;  
      private boolean mEnableSizeCache = true;  
      private boolean mInitiallized;  
      public AutoResizeTextView(Context context) {  
           super(context);  
           initialize();  
      }  
      public AutoResizeTextView(Context context, AttributeSet attrs) {  
           super(context, attrs);  
           initialize();  
      }  
      public AutoResizeTextView(Context context, AttributeSet attrs, int defStyle) {  
           super(context, attrs, defStyle);  
           initialize();  
      }  
      private void initialize() {  
           mPaint = new TextPaint(getPaint());  
           mMaxTextSize = getTextSize();  
           mAvailableSpaceRect = new RectF();  
           mTextCachedSizes = new SparseIntArray();  
           if (mMaxLines == 0) {  
                // no value was assigned during construction  
                mMaxLines = NO_LINE_LIMIT;  
           }  
           mInitiallized = true;  
      }  
      @Override  
      public void setText(final CharSequence text, BufferType type) {  
           super.setText(text, type);  
           adjustTextSize(text.toString());  
      }  
      @Override  
      public void setTextSize(float size) {  
           mMaxTextSize = size;  
           mTextCachedSizes.clear();  
           adjustTextSize(getText().toString());  
      }  
      @Override  
      public void setMaxLines(int maxlines) {  
           super.setMaxLines(maxlines);  
           mMaxLines = maxlines;  
           reAdjust();  
      }  
      public int getMaxLines() {  
           return mMaxLines;  
      }  
      @Override  
      public void setSingleLine() {  
           super.setSingleLine();  
           mMaxLines = 1;  
           reAdjust();  
      }  
      @Override  
      public void setSingleLine(boolean singleLine) {  
           super.setSingleLine(singleLine);  
           if (singleLine) {  
                mMaxLines = 1;  
           } else {  
                mMaxLines = NO_LINE_LIMIT;  
           }  
           reAdjust();  
      }  
      @Override  
      public void setLines(int lines) {  
           super.setLines(lines);  
           mMaxLines = lines;  
           reAdjust();  
      }  
      @Override  
      public void setTextSize(int unit, float size) {  
           Context c = getContext();  
           Resources r;  
           if (c == null)  
                r = Resources.getSystem();  
           else  
                r = c.getResources();  
           mMaxTextSize = TypedValue.applyDimension(unit, size, r.getDisplayMetrics());  
           mTextCachedSizes.clear();  
           adjustTextSize(getText().toString());  
      }  
      @Override  
      public void setLineSpacing(float add, float mult) {  
           super.setLineSpacing(add, mult);  
           mSpacingMult = mult;  
           mSpacingAdd = add;  
      }  
      /**  
       * Set the lower text size limit and invalidate the view  
       *   
       * @param minTextSize  
       */  
      public void setMinTextSize(float minTextSize) {  
           mMinTextSize = minTextSize;  
           reAdjust();  
      }  
      private void reAdjust() {  
           adjustTextSize(getText().toString());  
      }  
      private void adjustTextSize(String string) {  
           if (!mInitiallized) {  
                return;  
           }  
           int startSize = (int) mMinTextSize;  
           int heightLimit = getMeasuredHeight() - getCompoundPaddingBottom() - getCompoundPaddingTop();  
           mWidthLimit = getMeasuredWidth() - getCompoundPaddingLeft() - getCompoundPaddingRight();  
           mAvailableSpaceRect.right = mWidthLimit;  
           mAvailableSpaceRect.bottom = heightLimit;  
           super.setTextSize(TypedValue.COMPLEX_UNIT_PX, efficientTextSizeSearch(startSize, (int) mMaxTextSize, mSizeTester, mAvailableSpaceRect));  
      }  
      private final SizeTester mSizeTester = new SizeTester() {  
           @TargetApi(Build.VERSION_CODES.JELLY_BEAN)  
           @Override  
           public int onTestSize(int suggestedSize, RectF availableSPace) {  
                mPaint.setTextSize(suggestedSize);  
                String text = getText().toString();  
                boolean singleline = getMaxLines() == 1;  
                if (singleline) {  
                     mTextRect.bottom = mPaint.getFontSpacing();  
                     mTextRect.right = mPaint.measureText(text);  
                } else {  
                     StaticLayout layout = new StaticLayout(text, mPaint, mWidthLimit, Alignment.ALIGN_NORMAL, mSpacingMult, mSpacingAdd, true);  
                     // return early if we have more lines  
                     if (getMaxLines() != NO_LINE_LIMIT && layout.getLineCount() > getMaxLines()) {  
                          return 1;  
                     }  
                     mTextRect.bottom = layout.getHeight();  
                     int maxWidth = -1;  
                     for (int i = 0; i < layout.getLineCount(); i++) {  
                          if (maxWidth < layout.getLineWidth(i)) {  
                               maxWidth = (int) layout.getLineWidth(i);  
                          }  
                     }  
                     mTextRect.right = maxWidth;  
                }  
                mTextRect.offsetTo(0, 0);  
                if (availableSPace.contains(mTextRect)) {  
                     // may be too small, don't worry we will find the best match  
                     return -1;  
                } else {  
                     // too big  
                     return 1;  
                }  
           }  
      };  
      /**  
       * Enables or disables size caching, enabling it will improve performance  
       * where you are animating a value inside TextView. This stores the font  
       * size against getText().length() Be careful though while enabling it as 0  
       * takes more space than 1 on some fonts and so on.  
       *   
       * @param enable  
       *      enable font size caching  
       */  
      public void enableSizeCache(boolean enable) {  
           mEnableSizeCache = enable;  
           mTextCachedSizes.clear();  
           adjustTextSize(getText().toString());  
      }  
      private int efficientTextSizeSearch(int start, int end, SizeTester sizeTester, RectF availableSpace) {  
           if (!mEnableSizeCache) {  
                return binarySearch(start, end, sizeTester, availableSpace);  
           }  
           String text = getText().toString();  
           int key = text == null ? 0 : text.length();  
           int size = mTextCachedSizes.get(key);  
           if (size != 0) {  
                return size;  
           }  
           size = binarySearch(start, end, sizeTester, availableSpace);  
           mTextCachedSizes.put(key, size);  
           return size;  
      }  
      private static int binarySearch(int start, int end, SizeTester sizeTester, RectF availableSpace) {  
           int lastBest = start;  
           int lo = start;  
           int hi = end - 1;  
           int mid = 0;  
           while (lo <= hi) {  
                mid = (lo + hi) >>> 1;  
                int midValCmp = sizeTester.onTestSize(mid, availableSpace);  
                if (midValCmp < 0) {  
                     lastBest = lo;  
                     lo = mid + 1;  
                } else if (midValCmp > 0) {  
                     hi = mid - 1;  
                     lastBest = hi;  
                } else {  
                     return mid;  
                }  
           }  
           // make sure to return last best  
           // this is what should always be returned  
           return lastBest;  
      }  
      @Override  
      protected void onTextChanged(final CharSequence text, final int start, final int before, final int after) {  
           super.onTextChanged(text, start, before, after);  
           reAdjust();  
      }  
      @Override  
      protected void onSizeChanged(int width, int height, int oldwidth, int oldheight) {  
           mTextCachedSizes.clear();  
           super.onSizeChanged(width, height, oldwidth, oldheight);  
           if (width != oldwidth || height != oldheight) {  
                reAdjust();  
           }  
      }  
 }  


If you create layout only, then you don;t need any more, just call xml file, but if you want dynamically text then set which line and string on textview.

Output looks like:



Happy Coding !!!


ERROR: In MenuView, unable to find attribute android:preserveIconSpacing in Android

Are you struggling with ERROR: In <declare-styleable> MenuView, unable to find attribute android:preserveIconSpacing in Android using eclipse , this error comes in R.Java files, you clearly see on you project, then don't worry , we have solution for this error.

Steps:
1. Right Click on Project
2. Go to Properties
3. Choose Android
4. Change Below API version then previous(eg. if 5.1.1 then 4.1.2 or other below 5.1.1)
5.and finally clean the project.

However, if above solution did not solve your problem, try next method,
This error comes sometimes because you are using an old Appcompat version .. update Appcompat, to the newer version which is compatible with API 22, then click on fix project properties .

Happy Coding !!!

Dynamic add and remove item on listview in android or android studio

Progammatically add new item and delete existing item on listview, basically apply in when you add item on cart, when making to do list, or any thing important date, person, books, location add or delete of your own list.

First you have to create layout file(activity_main.xml):

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
   xmlns:tools="http://schemas.android.com/tools"  
   android:layout_width="match_parent"  
   android:layout_height="match_parent"  
   android:orientation="vertical"  
   android:padding="10dp"  
   tools:context="com.dynamiclistview.MainActivity" >  
   <LinearLayout  
     android:layout_width="match_parent"  
     android:layout_height="wrap_content"  
     android:orientation="horizontal" >  
     <EditText  
       android:id="@+id/editTextView"  
       android:layout_width="match_parent"  
       android:layout_height="wrap_content"  
       android:layout_weight="1"  
       android:hint="@string/EnterHint" />  
     <ImageView  
       android:id="@+id/imgViewAdd"  
       android:layout_width="wrap_content"  
       android:layout_height="wrap_content"  
       android:onClick="addValue"  
       android:background="@drawable/add"  
        />  
   </LinearLayout>  
   <ListView  
     android:id="@+id/listview"  
     android:layout_width="match_parent"  
     android:layout_height="match_parent"  
     android:layout_weight="1"  
     android:dividerHeight="2dp" >  
   </ListView>  
 </LinearLayout>  

Custom listItem layout file(item.xml),

 <?xml version="1.0" encoding="utf-8"?>  
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  
   android:layout_width="match_parent"  
   android:layout_height="match_parent"  
   android:orientation="horizontal" >  
   <TextView  
     android:id="@+id/tvName"  
     android:layout_width="match_parent"  
     android:layout_height="wrap_content"  
     android:layout_weight="1"  
     android:gravity="left"  
     android:padding="8dp"  
     android:textColor="#000000"  
     android:textSize="18sp" />  
   <ImageView  
     android:id="@+id/imgRemove"  
     android:layout_width="wrap_content"  
     android:layout_height="wrap_content"  
     android:focusable="false"  
     android:background="@drawable/remove" />  
 </LinearLayout>  


Here add and remove ,image you can put in drawable folder, as your required color and size.

Now, In MainActivity, we have write code about to click event of add imageview, whenever you want to add item,MainActivity.Java

 public class MainActivity extends Activity {  
  ListView listView;  
  EditText editTextView;  
  ArrayList<Model> ItemModelList;  
  CustomAdapter customAdapter;  
  @Override  
  protected void onCreate(Bundle savedInstanceState) {  
  super.onCreate(savedInstanceState);  
  setContentView(R.layout.activity_main);  
  listView = (ListView) findViewById(R.id.listview);  
  editTextView = (EditText) findViewById(R.id.editTextView);  
  ItemModelList = new ArrayList<Model>();  
  customAdapter = new CustomAdapter(getApplicationContext(), ItemModelList);  
         listView.setEmptyView(findViewById(R.id.empty));  
  listView.setAdapter(customAdapter);  
  }  
  @SuppressLint("NewApi")  
  public void addValue(View v) {  
  String name = editTextView.getText().toString();  
  if (name.isEmpty()) {  
   Toast.makeText(getApplicationContext(), "Plz enter Values",  
    Toast.LENGTH_SHORT).show();  
  } else {  
   Model md = new Model(name);  
   ItemModelList.add(md);  
   customAdapter.notifyDataSetChanged();  
   editTextView.setText("");  
  }  
  }  
 }  


Now, More details of CustomAdater, where wen define the how to remove and listitem populated style,CustomAdapter .Java

 public class CustomAdapter extends BaseAdapter {  
  Context context;  
  ArrayList<Model> itemModelList;  
  public CustomAdapter(Context context, ArrayList<Model> modelList) {  
  this.context = context;  
  this.itemModelList = modelList;  
  }  
  @Override  
  public int getCount() {  
  return itemModelList.size();  
  }  
  @Override  
  public Object getItem(int position) {  
  return itemModelList.get(position);  
  }  
  @Override  
  public long getItemId(int position) {  
  return position;  
  }  
  @Override  
  public View getView(final int position, View convertView, ViewGroup parent) {  
  convertView = null;  
  if (convertView == null) {  
   LayoutInflater mInflater = (LayoutInflater) context  
    .getSystemService(Activity.LAYOUT_INFLATER_SERVICE);  
   convertView = mInflater.inflate(R.layout.items, null);  
   TextView tvName = (TextView) convertView.findViewById(R.id.tvName);  
   ImageView imgRemove = (ImageView) convertView.findViewById(R.id.imgRemove);  
   Model m = itemModelList.get(position);  
   tvName.setText(m.getName());  
   // click listiner for remove button  
   imgRemove.setOnClickListener(new OnClickListener() {  
   @Override  
   public void onClick(View v) {  
    itemModelList.remove(position);  
    notifyDataSetChanged();  
   }  
   });  
  }  
  return convertView;  
  }  
 }  

Then finally, don;t forget to create model class, Model.java, where you can set getter and setter, but simply we don;t need any more getter and setter, we just create constructor method and assign .
 public class Model {  
  String name;  
  public Model(String name) {  
  this.name = name;  
  }  
 }  


and Last we can see out out like this,






Happy Coding!!!