我需要一种有条理的方式来组织我的应用程序,我认为按钮开始看起来很草率。下面是我的代码。我将 XML 设置为列表视图。不确定它是否正确。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/species"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ListView
android:id="@+id/species"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
</ListView>
</LinearLayout>
这是我的java代码。我还没有改变它,除了以前尝试这样做的导入。
package com.apw.listview.test;
import android.app.*;
import android.os.*;
import android.view.*;
import android.widget.*;
import android.content.*;
public class Species extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.species);
}
}