リストビューがあります。基本的に、ユーザーがその位置をクリックしていない場合は「新規」Listview
と表示され、表示を表示して、ユーザーがそのアイテムをクリックした後に可視性を設定します。誰かが私を助けることができますか?TextView
TextView
Listview
私はいくつかのコードをかなりいじってみましたが、もちろん試行錯誤しながらコードを消去してきたので、試したすべてを表示することはできませんでした。これは私が試した最後のことです:
// selecting single ListView item
final ListView lv = getListView();
// Launching new screen on Selecting Single ListItem
lv.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
int position, long ide) {
if (lv.isPressed(view.hasFocus(position))) {
newjob.setVisibility(View.VISIBLE);
} else {
newjob.setVisibility(View.GONE);
}
vib.vibrate(40);
// Starting new intent
try {
Intent in = new Intent(getApplicationContext(),
SingleMenuItemActivity.class);
in.putExtra("jobInfo", JOBS.getJSONObject(position).toString());
in.putExtra(pays, JOBS.getJSONObject(position).toString());
in.putExtra(job, JOBS.getJSONObject(position).toString());
in.putExtra(ready_at, JOBS.getJSONObject(position).toString());
in.putExtra(due_by, JOBS.getJSONObject(position).toString());
in.putExtra(customer_reference, JOBS.getJSONObject(position).toString());