如何为textview指定值?
<TextView
android:id="@+id/hName"
android:layout_width="match_parent"
android:layout_height="50dp"
android:textSize="25sp"
android:text = "@string/hName"/>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
</LinearLayout>
这是我正在创建的其中一个视图的结构。现在我想将来自前一个活动的值分配给hname。我能够从之前的活动中获取它但我无法将其设置为textview。当我使用setText()时,它显示空指针异常。如何为该文本字段指定值。提前致谢。
这是相应的java代码。
Intent intent = getIntent();
String host_name = intent.getStringExtra(ConnectionsActivity.HOST_NAME);
TextView tvName = (TextView)findViewById(R.id.hName);
tvName.setText(host_name);
setContentView(R.layout.sharedfiles);
答案 0 :(得分:3)
您的结构存在问题..
它给你一个空指针异常,因为它找不到文本视图......
将setContentView(R.layout.sharedfiles);
置于意图之上......
试试这个..
setContentView(R.layout.sharedfiles);
Intent intent = getIntent();
String host_name = intent.getStringExtra(ConnectionsActivity.HOST_NAME);
TextView tvName = (TextView)findViewById(R.id.hName);
tvName.setText(host_name);
答案 1 :(得分:0)
可以在应用程序代码的任何位置访问@ string / Name
getString(R.string.hName);
null异常来自其他东西,你最好发布你的logcat。