我们为什么要使用" R.id.action_settings"对于eclipse中的TextView标记

时间:2015-07-19 09:22:55

标签: android

请参阅以下简单代码。我写了以下XML.file但是在 MainActivity类 eclipse中说我应该使用R.id.action_settings来使用 TextView

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<TextView
    android:id="@+id/textView1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
     />

   public class MainActivity extends Activity {
 TextView editText;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
   editText = (TextView) findViewById(R.id.textView1);
    }



}

0 个答案:

没有答案