If this
Caused by: java.lang.ClassCastException: android.widget.TextView 02-16 12:28:32.648: ERROR/AndroidRuntime(1039): at com.example.userpage.UserPage.onCreate(UserPage.java:34)
... is in your code, then it seems that you are trying to apply some object (non-text) to the TextView. Try setting the debug point in onCreate and check what happens.
Update
you believe R.id.widget46and R.id.widget47are the TextView , or you accidentally created a EditText, given that widget41 and widget42 are EditTexts. Or the last two TextViews, and you are trying to transfer them to EditTexts. Check this.
source
share