- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在开发一个项目,该项目将跟踪一款名为 Farkle 的游戏的玩家得分和其他信息。我已经进行了大约 100 次 Google 搜索,并阅读了这里的一些条目。我尝试过实现和使用我发现的一切,但我到这里就结束了。
row.xml 将作为 ListView
中的单个项目加载。
最终,我希望按顺序排列(您将在下面看到我的 row.xml 布局):“玩家姓名”复选框 复选框“玩家得分”。
我可以运行该应用程序,因此在启动时没有出现问题,但是,一旦我尝试添加新播放器,该应用程序就会崩溃。
现在,我下面的代码是一个新项目,因为最后一个项目已经损坏,没有显示任何错误,但在启动时会崩溃。我尝试过使用自定义 ArrayAdapter,我相信这是适合我的方法,但我似乎无法让它在不崩溃的情况下加载 row.xml。我对 ArrayAdapter 还是新手,并且已经完成了一些教程,但仍然无法使其工作。
如果有人对我能做些什么来完成这项工作有任何想法,请帮助并为我指出正确的方向。我已经为此工作了两周了!预先感谢您。
activity_main.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btnSetScore"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/winning_score" />
<Button
android:id="@+id/btnAddPlayer"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/add_player"
android:textSize="@dimen/activity_horizontal_margin" />
<Button
android:id="@+id/btnSetPenalty"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/set_penalty"
android:textSize="@dimen/activity_horizontal_margin" />
</LinearLayout>
<ListView
android:id="@+id/lvScoreBoard"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="10"
tools:listitem="@layout/row" >
</ListView>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<Button
android:id="@+id/btnStatistics"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/statistics" />
<Button
android:id="@+id/btnNewGame"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/new_game" />
</LinearLayout>
这是我的row.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/tvPlayer"
android:layout_weight="4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/player"
android:textAppearance="?android:attr/textAppearanceLarge" />
<CheckBox
android:id="@+id/cbFarkle1"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:enabled="false"
android:focusable="false"
android:text="" />
<CheckBox
android:id="@+id/cbFarkle2"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:enabled="false"
android:focusable="false"
android:text="" />
<TextView
android:id="@+id/tvScore"
android:layout_weight="2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/player_score"
android:gravity="right"
android:textAppearance="?android:attr/textAppearanceLarge" />
</LinearLayout>
这是我的MainActivity.java
public class MainActivity extends Activity{
String winningScore = "";
String playerName = "";
String playerScore = "";
String farklePenalty = "";
int penalty;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// Creates Buttons
final Button btnSetScore = (Button) findViewById(R.id.btnSetScore);
Button btnAddPlayer = (Button) findViewById(R.id.btnAddPlayer);
final Button btnSetPenalty = (Button) findViewById(R.id.btnSetPenalty);
Button btnStatistics = (Button) findViewById(R.id.btnStatistics);
Button btnNewGame = (Button) findViewById(R.id.btnNewGame);
// Creates ListView for player score board
final ListView lvScoreBoard = (ListView) findViewById(R.id.lvScoreBoard);
// Sets the game winning score when the Set Score button is pressed.
btnSetScore.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO:
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Set Winning Score");
final EditText input = new EditText(MainActivity.this);
input.setInputType(InputType.TYPE_CLASS_NUMBER);
builder.setView(input);
builder.setPositiveButton("Save", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
winningScore = input.getText().toString();
btnSetScore.setText(winningScore);
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
}
});
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
}
});
builder.show();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
}
});
// Adds a new player to the game when Add Player button is pressed.
btnAddPlayer.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Add Player");
final EditText input = new EditText(MainActivity.this);
input.setInputType(InputType.TYPE_CLASS_TEXT);
builder.setView(input);
builder.setPositiveButton("Save", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
playerName = input.getText().toString();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
}
});
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
}
});
builder.show();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
}
});
// Sets the third farkle penalty when Set Penalty button is pressed.
btnSetPenalty.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Set Farkle Penalty");
final EditText input = new EditText(MainActivity.this);
input.setInputType(InputType.TYPE_CLASS_NUMBER);
builder.setView(input);
builder.setPositiveButton("Save", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
farklePenalty = input.getText().toString();
penalty = Integer.parseInt(input.getText().toString());
btnSetPenalty.setText(farklePenalty);
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
}
});
builder.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
dialog.cancel();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.HIDE_NOT_ALWAYS, 0);
}
});
builder.show();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0);
}
});
// Changes to statistics activity when Statistics button is pressed.
btnStatistics.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
}
});
// Resets all data when New Game button is pressed.
// This will also have the ability to keep player names,
// but erase farkle counts, player scores, penalty,
// and winning score.
btnNewGame.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
自定义ListAdapter,但我知道这是错误的。
public class GeneralAdapter extends BaseAdapter {
private static final CharSequence Name = null;
private LayoutInflater mInflater = null;
private ArrayList<String> info = null;
public GeneralAdapter( ArrayList<String> info) {
this.info = info;
}
String name;
String score = "0";
boolean farkle1 = false;
boolean farkle2 = false;
@Override
public int getCount() {
return info.size();
}
@Override
public Object getItem(int position) {
return info.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.row, null);
holder = new ViewHolder();
holder.generalTV = (TextView) convertView.findViewById(R.id.tvPlayer);
holder.generalCB = (CheckBox) convertView.findViewById(R.id.cbFarkle1);
holder.generalCB2 = (CheckBox) convertView.findViewById(R.id.cbFarkle2);
holder.generalTV2 = (TextView) convertView.findViewById(R.id.tvScore);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.generalTV.setText(name);
holder.generalCB.setChecked(farkle1);
holder.generalCB2.setChecked(farkle2);
holder.generalTV2.setText(score);
return null;
}
private class ViewHolder {
TextView generalTV;
TextView generalTV2;
CheckBox generalCB;
CheckBox generalCB2;
}
}
最佳答案
崩溃日志或至少您遇到的异常会有所帮助。
也就是说,我可以看到一个问题。您从 getView() 返回 null。尝试返回convertView:
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.row, null);
holder = new ViewHolder();
holder.generalTV = (TextView) convertView.findViewById(R.id.tvPlayer);
holder.generalCB = (CheckBox) convertView.findViewById(R.id.cbFarkle1);
holder.generalCB2 = (CheckBox) convertView.findViewById(R.id.cbFarkle2);
holder.generalTV2 = (TextView) convertView.findViewById(R.id.tvScore);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.generalTV.setText(name);
holder.generalCB.setChecked(farkle1);
holder.generalCB2.setChecked(farkle2);
holder.generalTV2.setText(score);
return convertView; // HERE!!
}
此外,当您从 ConvertView 中获取 Holder 时,您可能需要进行一些空检查。如果由于某种原因,最终结果为 null,那么从中引用的第一个内容将导致 NRE。我看不出您的代码有任何问题,但由于您遇到了崩溃,因此值得一试。
<小时/>退一步来说,您永远不会使用适配器内的信息。换句话说,每个列表项看起来都完全相同,因为它们使用相同的值(名称、farkle1、farkle2、分数)。
也许您的意思是拥有一个包含这些成员的对象数组?像这样:
public class DataItem {
String name;
String score = "0";
boolean farkle1 = false;
boolean farkle2 = false;
}
然后将其传递到您的适配器中,如下所示..(注意:我还没有尝试编译)
public class GeneralAdapter extends BaseAdapter {
private static final CharSequence Name = null;
private LayoutInflater mInflater = null;
private ArrayList<DataItem> info = null;
public GeneralAdapter( ArrayList<DataItem> info) {
this.info = info;
}
@Override
public int getCount() {
return info.size();
}
@Override
public Object getItem(int position) {
return info.get(position);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
ViewHolder holder;
DataItem dataItem = getItem(position);
if (convertView == null) {
convertView = mInflater.inflate(R.layout.row, null);
holder = new ViewHolder();
holder.generalTV = (TextView) convertView.findViewById(R.id.tvPlayer);
holder.generalCB = (CheckBox) convertView.findViewById(R.id.cbFarkle1);
holder.generalCB2 = (CheckBox) convertView.findViewById(R.id.cbFarkle2);
holder.generalTV2 = (TextView) convertView.findViewById(R.id.tvScore);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
holder.generalTV.setText(dataItem.name);
holder.generalCB.setChecked(dataItem.farkle1);
holder.generalCB2.setChecked(dataItem.farkle2);
holder.generalTV2.setText(dataItem.score);
return convertView;
}
private class ViewHolder {
TextView generalTV;
TextView generalTV2;
CheckBox generalCB;
CheckBox generalCB2;
}
}
顺便说一句,这基本上是一个 ArrayAdapter,您可以轻松地使用它。
关于java - 为自定义 ListView 设置自定义适配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20893976/
这个问题已经有答案了: Is there any way to accept only numeric values in a JTextField? (20 个回答) It's possible i
我使用戴尔 XPS M1710。笔记本电脑的盖子、侧面扬声器和前置扬声器都有灯(3 组灯可以单独调节)和鼠标垫下方的灯。在 BIOS 中,我可以更改这些灯的颜色,至少是每个组。另外,我可以在鼠标垫下打
我知道我可以使用 在 iOS 5 中打开设置应用 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"
我有一个 Django 应用程序,我正在尝试为其设置文档。目录结构如下: - doc - project | - manage.py 我已经设置了路径以便 Sphinx 可以看到东西,但是当我尝试使用
我正在使用 768mb ram 运行 centos 5.5。我一直在日志中获取 server reached MaxClients setting, consider raising the MaxC
我在具有以下配置的服务器内运行了 Drupal 安装: StartServers 5 MinSpareServers 5 MaxSpareServers 15 MaxClien
是否可以使用 Microsoft.Web.Administration 包为给定的 location 配置 asp 设置? 我想以编程方式将以下部分添加到本地 IIS applicationHost.
我一直在阅读为 kube-proxy 提供参数的文档,但没有解释应该如何使用这些参数。我使用 az aks create 创建我的集群使用 azure-cli 程序,然后我获得凭据并使用 kubect
我想知道与在 PHP 中使用 setcookie() 函数相比,在客户端通过 JavaScript 设置一些 cookie 是否有任何明显的优势?我能想到的唯一原因是减少一些网络流量(第一次)。但不是
我有一个按钮可以将 body class 设置为 .blackout 我正在使用 js-cookie设置cookie,下面的代码与我的按钮相关联。 $('#boToggle').on('click'
我有一堆自定义的 HTML div。我将其中的 3 存储在具有 slide 类的 div 中。然后,我使用该幻灯片类调用 slick 函数并应用如下设置: $('.slide').slick({
我正在创建一个应该在 Windows 8(桌面)上运行的应用 我需要: 允许用户使用我的应用启动“文件历史记录”。我需要找到打开“文件历史记录”的命令行。 我需要能够显示“文件历史记录”的当前设置。
我刚买了一台新的 MacBook Pro,并尝试在系统中设置 RVM。我安装了 RVM 并将默认设置为 ➜ rvm list default Default Ruby (for new shells)
由于有关 Firestore 中时间戳行为即将发生变化的警告,我正在尝试更改我的应用的初始化代码。 The behavior for Date objects stored in Firestore
在 ICS 中,网络 -> 数据使用设置屏幕中现在有“限制后台数据”设置。 有没有办法以编程方式为我的应用程序设置“限制后台数据”? 或 有没有办法为我的应用程序调出具有选项的“数据使用”设置? 最佳
我正在尝试使用 NextJS 应用程序设置 Jest,目前在 jest.config.js : module.exports = { testPathIgnorePatterns: ["/.n
我最近升级到 FlashDevelop 4,这当然已经将我之前的所有设置恢复到原来的状态。 我遇到的问题是我无法在新设置窗口的哪个位置找到关闭它在方括号、大括号等之前插入的自动空格的选项。 即它会自动
有没有办法以编程方式访问 iPhone/iPod touch 设置? 谢谢。比兰奇 最佳答案 大多数用户设置可以通过读取存储在 /User/Library/Preferences/ 中的属性列表来访问
删除某些值时,我需要选择哪些设置来维护有序队列。我创建了带有自动增量和主键的 id 的表。当我第一次插入值时,没问题。就像 1,2,3,4,5... 当删除某些值时,顺序会发生变化,例如 1,5,3.
我正在尝试设置示例 Symfony2 项目,如此处所示 http://symfony.com/doc/current/quick_tour/the_big_picture.html 在访问 confi
我是一名优秀的程序员,十分优秀!