私はAndroidアプリを初めて使用します。私はnetbeans 7.0.1 IDE
Androidアプリの開発にを使用しています。メインのJavaファイルに次のコードを記述しました。
package com.test.helloworld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class helloworld extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
TextView t1=new TextView(this);
t1.setText("hello world..!!!!");
setContentView(t1);
}
}
これは正常に機能していました。次のようにとmain.xml
を表示するようにファイルを編集しました。textfield
button
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send"/>
<EditText android:id="@+id/edit_message"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:hint="@string/edit_message"/>
</LinearLayout>
もちろん、対応するすべての文字列をに追加しましたstrings.xml
。しかし、アプリを実行しようとすると、これらは表示されませんでした...:(。以前に表示されたのと同じ文字列が表示されていたことを意味します。
誰かが間違いが何であるかを理解できますか?