I am a newbie for java and android.
As we know a Textview with id R.Id.text1 show in xml file
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/text1" <-----------HERE
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="center_vertical"
android:paddingLeft="5dip"
android:singleLine="true"
Is there a way to get R.Id.text1 's text1 programmatically?
Your comment welcome