findViewById 返回 null (TextView) [重复]
Posted
技术标签:
【中文标题】findViewById 返回 null (TextView) [重复]【英文标题】:findViewById returning null (TextView) [duplicate] 【发布时间】:2014-08-14 12:34:42 【问题描述】:我在 google 和 *** 上搜索过。 但是没有一个解决方案解决了我的问题。 findViewById 在 onCreate 中返回 null 。 但是,当我将其更改为 onClick 功能时,它工作正常。 请帮我。我是android编程的初学者。
我的 MainFunction.java
public class MainActivity extends ActionBarActivity
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (savedInstanceState == null)
getSupportFragmentManager().beginTransaction()
.add(R.id.container, new PlaceholderFragment()).commit();
final TextView t = (TextView) findViewById(R.id.textView1);
t.setText("hi world.");
@Override
public boolean onCreateOptionsMenu(Menu menu)
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
@Override
public boolean onOptionsItemSelected(MenuItem item)
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings)
return true;
return super.onOptionsItemSelected(item);
/**
* A placeholder fragment containing a simple view.
*/
public static class PlaceholderFragment extends Fragment
public PlaceholderFragment()
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
View rootView = inflater.inflate(R.layout.fragment_main, container,
false);
return rootView;
我的 fragment_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.test.MainActivity$PlaceholderFragment" >
<Button
android:id="@+id/button1"
android:layout_
android:layout_
android:text="Button"
android:onClick="onClick" />
<TextView
android:id="@+id/textView1"
android:layout_
android:layout_
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="108dp"
android:layout_marginTop="68dp"
android:text="TextView" />
【问题讨论】:
您正在使用setContentView(R.layout.activity_main);
,而textView1
在fragment_main
中。将代码移至您的Fragment
【参考方案1】:
您的 TextView
位于片段 (fragment_main.xml
) 中,您正在查看 R.layout.activity_main
。所以最好将 findViewById
写在您的 Fragment
中,即 PlaceholderFragment
。或者您可以使用 Inflater
获取您的fragment_layout
,然后使用view.findViewById
获取您的TextView
。
【讨论】:
【参考方案2】:@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState)
View rootView = inflater.inflate(R.layout.fragment_main, container,
false);
TextView t = (TextView) rootView.findViewById(R.id.textView1);
t.setText("hi world.");
return rootView;
【讨论】:
以上是关于findViewById 返回 null (TextView) [重复]的主要内容,如果未能解决你的问题,请参考以下文章
findViewById 返回 null (TextView) [重复]
findViewById() 为对话框中的视图返回 null