我是Android新手,使用eclipse Luna,
当我创建我的第一个空白活动项目时,我的书说在路径“res / layout”中应该有一个布局文件(用于在视觉上设计应用程序), 例如一个名为“MyFirstapp.xml”的文件,但在我的情况下,布局文件夹是空的!
我的意思是没有你在哪里看到设计窗口。
请帮我解决这个问题。
答案 0 :(得分:0)
您需要在res / layout文件夹中创建一个新文件。
将其命名为sample_layout.xml
创建基于xml的布局或使用图形界面。
Android开发者网站的示例代码: (http://developer.android.com/guide/topics/ui/declaring-layout.html)
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView android:id="@+id/text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, I am a TextView" />
<Button android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello, I am a Button" />
</LinearLayout>
之后您可以通过调用:
来使用布局public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sample_layout);
}
有大量的示例和教程!