1

我是安卓的新手。

这是我的 xml 文件 -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" 
    android:id="@+id/linearlayout"
    android:orientation="vertical">

    <TextView
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:text="@string/hello_world"
     android:id="@+id/textview" />

  </LinearLayout>

和非常基本的代码 -

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    View view=getLayoutInflater().inflate(R.layout.activity_main,null);

            //setContentView(view);

            LinearLayout ly = (LinearLayout)findViewById(R.id.linearlayout);

            Log.i("System.out ","linear layout = " + view);

            Log.i("System.out ","linear layout = " + ly);
    }

输出:

05-10 11:44:15.996: I/System.out(6494): linear layout = android.widget.LinearLayout@41e34db8
05-10 11:44:15.996: I/System.out(6494): linear layout = null

findViewById()返回null?为什么?

如果我取消注释setContentView(view)并再次运行..

输出:

05-10 11:50:12.781: I/System.out(7791): linear layout = android.widget.LinearLayout@41e0d6c8
05-10 11:50:12.781: I/System.out(7791): linear layout = android.widget.LinearLayout@41e0d6c8

额外setContentView()做什么?

4

1 回答 1

7
   public void setContentView (View view)

将活动内容设置为显式视图。此视图直接放置在活动的视图层次结构中。

setContentView(视图视图)是活动类的一个方法。创建活动时,您需要将内容设置为活动。

onCreate(Bundle) 是您初始化活动的地方。最重要的是,在这里您通常会使用定义 UI 的布局资源调用 setContentView(view),并使用 findViewById(int) 检索该 UI 中需要以编程方式与之交互的小部件。

您的 onCreate() 实现应该定义用户界面并可能实例化一些类范围的变量。

在布局文件中添加的每个资源(如文本视图、可绘制对象)都会在 R.java 文件中具有一个条目该条目是自动的

例子

对于 R.java 中的 activity_main

        public static final class layout {
        public static final int activity_main=0x7f030000;
        }

在您的情况下,您膨胀了布局,但没有将内容设置为活动。

您需要将内容设置为您的活动,然后使用 findViewById(..) 查找 ID。

如果没有,您将得到 NullPointerException。

于 2013-05-10T06:43:08.227 回答