私は非常に単純なことをしようとしています(データが入力されたlistViewを表示しています)が、できません。私のコードが機能しておらず、何が問題なのかがわかりません。他の誰かが私を助けてくれることを願っています:)
listView が定義されている私の XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10px">
<TextView
android:id="@+id/descripcion"
android:text="@string/descripcion"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<ListView
android:id="@+id/listaConfig"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
アクティビティ:
public class s_config extends Activity {
public ArrayAdapter<String> lvAdapter;
public ListView lv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.s_config);
final String[] datos = new String[]{"Elem1","Elem2","Elem3","Elem4","Elem5"};
lvAdapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,datos);
lv = (ListView) findViewById(R.id.listaConfig);
lv.setAdapter(lvAdapter);
}
}
アプリを起動すると、問題なく、XML の TextView が表示されますが、ListView の兆候はありません...何か不足していますか?