FileDocCategorySizeDatePackage
SimplePathsActivity.javaAPI DocAndroid 5.1 API1426Thu Mar 12 22:22:44 GMT 2015com.android.test.hwui

SimplePathsActivity

public class SimplePathsActivity extends android.app.Activity

Fields Summary
Constructors Summary
Methods Summary
protected voidonCreate(android.os.Bundle savedInstanceState)

        super.onCreate(savedInstanceState);

        FrameLayout layout = new FrameLayout(this);
        EditText text = new EditText(this);
        layout.addView(text, new FrameLayout.LayoutParams(600, 350, Gravity.CENTER));
        text.setText("This is an example of an EditText widget \n" +
                "using simple paths to create the selection.");
        //text.setSelection(0, text.getText().length());

        setContentView(layout);