首页 > 代码库 > xml中定义个TextView控件及java代码中调用方法。

xml中定义个TextView控件及java代码中调用方法。

<TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world"
        android:id="@+id/myTextView" />
TextView myTextView = (TextView)findViewById(R.id.myTextView);


xml中定义个TextView控件及java代码中调用方法。