我是 android 新手,我对我现在正在做的项目有一些疑问。我正在开发一个应用程序,它总共显示 9 张 3x3 图像,如下图所示。
当我按下下一个按钮时,图像变为另外 9 个图像。如果剩余图像不是 9,则图像将按照剩余数量显示,如下图所示。(示例剩余为 6 张图片)
问题是:
显示图像的最佳方法是什么?我的想法是创建一个包含 9 个 ImageViews 的视图
如果我有 2 个 xml 布局,第一个是主布局,第二个是包含 ImageViews 的布局,如何将第二个插入到第一个?
以及如何根据上面的解释动态插入图像?
请帮我一些代码。我非常感谢任何帮助。对不起,如果我的英语不是那么好。
先感谢您。
更新
我已经尝试在这种情况下使用 GridView,这是我第一次使用GridView
,所以我使用这里的示例并将其实现到我的(我已经尝试了包含在那里的示例,它的工作原理)。
但是,我检查了很多次,LogCat 没有错误,没有强制关闭,图像没有显示。我不知道哪里错了。
这是我的代码:
选择图片.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/bg_inner">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/book_inner"
android:layout_marginTop="50dp"
/>
<ImageButton
android:id="@+id/homeBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/home_btn"
android:background="@null"
/>
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:src="@drawable/bg_arrow_btn"
android:layout_alignParentRight="true"
/>
<ImageButton
android:id="@+id/nextBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/right_arrow"
android:background="@null"
android:layout_alignParentRight="true"
android:layout_marginTop="5dp"
android:layout_marginRight="7dp"
android:layout_marginLeft="7dp"
/>
<ImageButton
android:id="@+id/prevBtn"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/left_arrow"
android:background="@null"
android:layout_toLeftOf="@+id/nextBtn"
android:layout_marginTop="5dp"
/>
<GridView
android:id="@+id/gridView1"
android:numColumns="3"
android:gravity="center"
android:columnWidth="30dp"
android:stretchMode="columnWidth"
android:layout_width="300dp"
android:layout_height="200dp"
android:layout_marginLeft="60dp"
android:layout_marginTop="70dp"
>
</GridView>
</RelativeLayout>
动物按钮.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageView
android:id="@+id/grid_item_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
/>
</LinearLayout>
ImageAdapter.java
public class ImageAdapter extends BaseAdapter{
private Context context;
private final String[] animalValues;
public ImageAdapter(Context context, String[] animalValues) {
this.context = context;
this.animalValues = animalValues;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View gridView;
if (convertView == null) {
gridView = new View(context);
// get layout from mobile.xml
gridView = inflater.inflate(R.layout.animalbutton, null);
// set image based on selected text
ImageView imageView = (ImageView) gridView.findViewById(R.id.grid_item_image);
String animal = animalValues[position];
if (animal.equals("Cat")) {
imageView.setImageResource(R.drawable.anim_cat);
} else if (animal.equals("Cow")) {
imageView.setImageResource(R.drawable.anim_cow);
} else if (animal.equals("Croc")) {
imageView.setImageResource(R.drawable.anim_croc);
} else if(animal.equals("Duck")){
imageView.setImageResource(R.drawable.anim_duck);
} else if(animal.equals("Elephant")){
imageView.setImageResource(R.drawable.anim_elephant);
} else if(animal.equals("Giraffe")){
imageView.setImageResource(R.drawable.anim_giraffe);
} else if(animal.equals("Lion")){
imageView.setImageResource(R.drawable.anim_lion);
} else if(animal.equals("Moose")){
imageView.setImageResource(R.drawable.anim_moose);
} else if(animal.equals("Mouse")){
imageView.setImageResource(R.drawable.anim_mouse);
}else {imageView.setImageResource(R.drawable.ic_launcher);}
} else {
gridView = (View) convertView;
}
return gridView;
}
@Override
public int getCount() {
// TODO Auto-generated method stub
return 0;
}
@Override
public String getItem(int position) {
// TODO Auto-generated method stub
return animalValues[position];
}
@Override
public long getItemId(int position) {
// TODO Auto-generated method stub
return 0;
}
}
选择pic.java
public class choosepic extends Activity {
/** Called when the activity is first created. */
ImageAdapter mAdapter;
GridView gridView;
static final String[] animal = new String[] {
"Cat", "Cow","Croc", "Duck", "Elephant", "Giraffe", "Lion", "Moose", "Mouse"};
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.choosepic);
mAdapter = new ImageAdapter(this, animal);
gridView = (GridView) findViewById(R.id.gridView1);
gridView.setAdapter(mAdapter);
gridView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> arg0, View v, int position, long id) {
Toast.makeText(getApplicationContext(), mAdapter.getItem(position), Toast.LENGTH_SHORT).show();
}
});
}
}
我需要一些帮助。先感谢您!