我想在android中制作一个画廊。为了设置需要获取我在 xml 文件中定义的画廊的适配器。我这样做是:Gallery g = (Gallery) findViewById(R.id.gallery1); 但是使用此代码我无法编译我的项目,因为我收到错误“无法从视图投射到画廊”。我的 xml 文件如下所示:"
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Gallery android:id="@+id/gallery1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="bottom"
/>
</LinearLayout>
有人知道如何解决我的问题吗?非常感谢