Home | History | Annotate | Download | only in com.example.android.basicnetworking

Lines Matching refs:TextView

27 import android.widget.TextView;
30 * Simple fragment containing only a TextView. Used by TextPagerAdapter to create
45 // For situations where the app wants to modify text at Runtime, exposing the TextView.
46 private TextView mTextView;
54 // Before initializing the textView, check if any arguments were provided via setArguments.
57 // Create a new TextView and set its text to whatever was provided.
58 mTextView = new TextView(getActivity());
68 public TextView getTextView() {
73 * Changes the text for this TextView, according to the resource ID provided.
74 * @param stringId A resource ID representing the text content for this Fragment's TextView.