How to easily extract strings from your Android code into the strings.xml file
This handy little feature can save a lot of time and manual work when working with Android apps. If you during Android development in Eclipse use hard-coded strings in your Java code, like in the example below: package test.layout; import android.app.Activity; import android.os.Bundle; import android.widget.Button; public class LayoutTest extends Activity { private Button btn; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);…