我是Android开发的新手。 我在main.xml中添加了一些控件但它们无法在模拟器上显示。 请告诉我我做错了什么。 这是我的xml;
<?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" android:gravity="center">
<TextView android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center" android:text="@string/app_name"
android:textSize="30dp"/>
<EditText android:id="@+id/editable"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android.Text="Text goes here " android:layout_weight="1" android:hint="@string/display"/>
<Button android:id="@+id/button"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/mainPageButton"
android:textSize="25dp"/>
</LinearLayout>
答案 0 :(得分:0)
你有:
setContentView(R.layout.main);
你活动中的onCreate方法中的?