我有一个包含2个项目的listView,其中2个项目是“秒”和“分钟” 当我按“秒”时,我想要一个alertDialogBox来打开en show 5,10,15,...秒。我按分钟时也一样
这样的事情:
但是我在实施它时遇到了麻烦,因为我不太清楚它是如何工作的。这是我的代码:
import android.app.Activity;
import android.app.AlertDialog;
import android.content.DialogInterface;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
public class SettingsActivity extends Activity {
ListView listView = (ListView) findViewById(R.id.settingsList);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.settings);
String[] values = new String[] { "Seconds", "Minutes" };
// Define a new Adapter
// First parameter - Context
// Second parameter - Layout for the row
// Third parameter - ID of the TextView to which the data is written
// Forth - the Array of data
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, android.R.id.text1, values);
// Assign adapter to ListView
listView.setAdapter(adapter);
listView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> arg0, View arg1,
int position, long arg3) {
AlertDialogView();
}
});
}
private void AlertDialogView() {
final CharSequence[] items = { "15 secs", "30 secs", "1 min", "2 mins" };
AlertDialog.Builder builder = new AlertDialog.Builder(ShowDialog.this);//ERROR ShowDialog cannot be resolved to a type
builder.setTitle("Alert Dialog with ListView and Radio button");
builder.setSingleChoiceItems(items, -1,
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
Toast.makeText(getApplicationContext(), items[item],
Toast.LENGTH_SHORT).show();
}
});
builder.setPositiveButton("Yes", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Toast.makeText(ShowDialog.this, "Success", Toast.LENGTH_SHORT)
.show();
}
});
builder.setNegativeButton("No", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Toast.makeText(ShowDialog.this, "Fail", Toast.LENGTH_SHORT)
.show();
}
});
AlertDialog alert = builder.create();
alert.show();
}
}
答案 0 :(得分:3)
错误显然是解释性的,您错过了semicolon
。您的代码应该像
listView.setOnItemClickListener(new OnItemClickListener() {
public void onItemClick(AdapterView<?> arg0, View arg1, int position, long arg3)
{
AlertDialogView();
}//ERROR I'm GETTING HERE is Syntax error, insert ";" to complete Statement
};
并且上面的代码应该在onCreate()
内。在你提供的代码中,它漂浮在不知名的地方!