How to set Activity with numeric keyboard,I know that we can specify numeric keyboard for each controls like this
<EditText a:layout_width="0dip" a:id="@+id/priceTextBox"
a:layout_height="40dip"
a:layout_weight="20" a:singleLine="true"
a:focusable="true"
a:inputType="number" a:numeric="integer"
/>
But requirement is activity itself need numeric keyboard not each controls.How to specify like that? Kindly assist..