我正在尝试对布局的特定部分进行膨胀,但是我遇到了编译器错误,并且不确定要采取什么方法。特别是与线 -
LinearLayout childList = (LinearLayout)findViewById(R.id.listLayout).
//(This can be found near the bottom of Java code.)
我也不确定在尝试给listLayout
.
在这个阶段,我试图在顶部有一个按钮,然后在它下面的 Array 中动态扩展项目列表。
任何帮助将非常感激
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<Button
android:id="@+id/labelAddCourseButton"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:onClick="addCourseButton"
android:padding="10dp"
android:text="@string/CourseName" />
<LinearLayout
android:id="@+id/listLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/labelModuleCode"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_marginLeft="10dp"
android:text="@string/CourseName"
android:textSize="10dp" />
<TextView
android:id="@+id/labelCourseType"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/CourseType"
android:layout_marginLeft="10dp"
android:textSize="10dp" />
</LinearLayout>
</LinearLayout>
爪哇
package com.example.mycoursetimetable;
import android.os.Bundle;
import android.app.ListActivity;
import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ArrayAdapter;
import android.widget.LinearLayout;
import android.widget.ListView;
import android.widget.TextView;
public class MyCourses extends ListActivity {
static final String TEST = "com.example.mycoursetimetable.TEST";
String [] MODULE;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_my_courses);
MODULE = getResources().getStringArray(R.array.module);
setListAdapter(new ListArrayAdapter(this,MODULE));
}
public void addCourseButton (View addCourseButton)
{
Intent intent = new Intent(this,AddCourse.class);
startActivity(intent);
}
public void onListItemClick(ListView l, View v, int position, long id)
{
super.onListItemClick(l, v, position, id);
try {
Class test = Class.forName("com.example.MyCourseTimeTable.AddCourse");
Intent intent = new Intent(MyCourses.this, test);
TextView textView = (TextView) v.findViewById(R.id.labelModuleCode);
String module = textView.getText().toString();
intent.putExtra(TEST,module);
startActivity(intent);
}
catch (ClassNotFoundException e)
{
e.printStackTrace();
}
}
}
class ListArrayAdapter extends ArrayAdapter<String>
{
//Context allows the retrieval of resources such as layout
private final Context context;
private final String[] test;
//create the ArrayAdpater
public ListArrayAdapter(Context context, String[] test)
{
super(context, R.layout.activity_my_courses, test);
this.context = context;
this.test = test;
}
@Override
public View getView(int position, View convertView, ViewGroup parent)
{
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
//inflater dynamically loads the layout
LinearLayout childList = (LinearLayout)findViewById(R.id.listLayout);
View rowView = inflater.inflate(R.layout.childList, parent, false);
//get the textView
TextView textView = (TextView) rowView.findViewById(R.id.labelModuleCode);
//set the text to the string values based on position
textView.setText(test[position]);
// Change item based on its position in the string array
String modulePosition = test[position];
//return the layout
return rowView;
}
}