Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 android 应用程序。我需要从sqlite一个xml页面访问内容,其中包括文本和图像。如何在单个ImageView和中为不同的活动添加不同的图像TextView?我是android开发的新手。所以请帮助我,谢谢。
sqlite
xml
ImageView
TextView
您可以使用以下代码源在单个图像视图中更改图像。
button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { imageView.setImageResource(R.drawable.ic_launcher); } });
可能有不同的按钮事件,但imageView会是相同的。所以只需drawable在点击事件中更改 s 。
imageView
drawable