<TextView
android:id="@+id/version"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginRight="2dp"
android:textColor="#FFFFFF" />
try {
int version = getPackageManager().getPackageInfo("com.example.main", 0).versionCode;
((TextView)findViewById(R.id.version)).setText(version+".0.0");
} catch (NameNotFoundException e) {
e.printStackTrace();
}