gpt4 book ai didi

android - 从 ListView 中检索数据并将其显示在 TextView / ImageView 中

转载 作者:搜寻专家 更新时间:2023-11-01 08:34:40 25 4
gpt4 key购买 nike

我已经对此进行了研究,但没有任何内容符合我的要求。我有一个食谱类型列表,如果我单击其中一个类别(开胃菜),它会将我带到另一个列表:一个包含开胃菜列表的 ListView 。如果我点击列表中的其中一个项目,它应该会带我到一个 Activity ,该 Activity 有一个图像、一个标题、标题下方的 cooking 时间以及图像和 TextView 下方的食谱本身。

编辑以显示查询解析的代码:

ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("Appetizers");
query.addAscendingOrder("appetizer");
query.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> recipes, ParseException e) {
if (e == null) {
// success
} else {
// error

}

我该怎么做?

开胃菜列表:

list of category items

Activity :

activity to hold objects from parse.com

编辑:

开胃菜适配器:

public class AppetizerAdapter extends ArrayAdapter {

protected Context myContext;
protected List myAppetizer;

public AppetizerAdapter(Context context, List myappetizer) {
super(context, R.layout.custom_appetizer, myappetizer);

myContext = context;
myAppetizer = myappetizer;
}

// inflates each row of the app
@Override
public View getView(final int position, View convertView, ViewGroup parent) {

// initialize viewholder
ViewHolder holder;

if (convertView == null) { // If no items in the view to be displayed
convertView = LayoutInflater.from(myContext).inflate(
R.layout.custom_appetizer, null);

// initialize the views
holder = new ViewHolder(); // creates a new view
holder.appetizerTextView = (TextView) convertView // calls the view
.findViewById(R.id.appetizer);
holder.appetizerImageView = (ImageView) convertView.findViewById(R.id.appetizerImage);
holder.cookTimeTextView = (TextView) convertView.findViewById(R.id.cookTime);

// call the view and setTag to the parameter (holder)
convertView.setTag(holder);

} else { // if view is previously displayed

// initialize holder
holder = (ViewHolder) convertView.getTag();

}

// get the position of the row
ParseObject appObject = (ParseObject) myAppetizer.get(position);

// Title and Cook Time
String app = appObject.getString("appetizer"); // column passing
holder.appetizerTextView.setText(app);

String cook = appObject.getString("cookTime");
holder.cookTimeTextView.setText(cook);

// image
Picasso.with(getContext()).load(appObject.getParseFile("imageFiles").getUrl())
.into(holder.appetizerImageView);

return convertView; // return the view
}

public static class ViewHolder {

// declaration of variables
TextView appetizerTextView;
TextView cookTimeTextView;
ImageView appetizerImageView;

}

Appetizer.java

public class Appetizer extends ListActivity {

protected List<ParseObject> mAppetizers;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_appetizer);

ParseAnalytics.trackAppOpenedInBackground(getIntent());

ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("Appetizers");
query.addAscendingOrder("appetizer");
query.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> appetizer, ParseException e) {
if (e == null) {
// success
mAppetizers = appetizer;

AppetizerAdapter adapter = new AppetizerAdapter(getListView().getContext(),
mAppetizers);
setListAdapter(adapter);

} else {

// there is a problem
AlertDialog.Builder builder = new AlertDialog.Builder(Appetizer.this);
builder.setMessage(e.getMessage());
builder.setTitle("Sorry");
builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// close the dialog
dialog.dismiss();
}
});

AlertDialog dialog = builder.create();
dialog.show();
}
}
});



}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_directory, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}

return super.onOptionsItemSelected(item);
}

// click on a row item
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);



Intent intent = new Intent(Appetizer.this, AppetizerRecipe.class);
startActivity(intent);
}

Appetizer class .. Parse

我有一个名为 content_appetizer_recipe 的布局,其中包含图片中的布局和图像,以及 3 个 TextView (不是列表)。 AppetizerRecipe 是一个 AppCompatActivity。

希望这有助于解决我的问题。

最佳答案

假设您有一个 Recipe类和一些ArrayAdapter<Recipe>实现,您应该能够遍历 Parse 返回给您的值列表,并使用适当的方法从 ParseObject 中提取值.

ArrayAdapter 负责在 TextView 和 ImageView 中显示正确的数据。

ListView lv = (ListView) findViewById(R.id.listView); // TODO
List<Recipe> recipeList = new ArrayList<Recipe>();
final RecipeAdapter adapter = new RecipeAdapter(RecipeActivity.this, recipeList);
lv.setAdapter(adapter);

ParseQuery<ParseObject> query = new ParseQuery<ParseObject>("Appetizers");
query.addAscendingOrder("appetizer");
query.findInBackground(new FindCallback<ParseObject>() {
@Override
public void done(List<ParseObject> recipes, ParseException e) {
if (e == null) {
for (ParseObject po : recipes) {
Recipe r = new Recipe();

// TODO: Retrieve fields from the ParseObject
r.setName(po.get...);
r.setTime(po.get...);
r.setImageUrl(po.get...);

adapter.add(r);
}
} else {
// error
}
});

如果你没有这个 Recipe类,然后只需加载 List<ParseObject>像你所做的那样进入适配器,然后在 onListItemClick 中方法,您可以使用 position 从该列表中获取特定对象参数。

在这里,您还需要一个字段 public static final String ARG_NAME = "name";AppetizerRecipe.java使你的论点保持一致。可以引用Passing data between Activities有关这方面的更多信息。您还需要从 AppetizerRecipe.java 的 Intent 中获取数据.

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);

ParseObject po = mAppetizers.get(position);
String name = po.getString("appetizer");
// TODO: Get more fields from Parse

Intent intent = new Intent(Appetizer.this, AppetizerRecipe.class);
intent.putExtra(AppetizerRecipe.ARG_NAME, name);
// TODO: Put more extras

startActivity(intent); // TODO: In other activity, get these extras
}

关于android - 从 ListView 中检索数据并将其显示在 TextView / ImageView 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37801339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com