图库控制 - 不工作

时间:2013-03-10 02:12:53

标签: android widget gallery

当我尝试使用Gallery小部件时。我有一个问题。

此类在API级别16中已弃用。 不再支持此小部件。其他水平滚动小部件包括支持库中的Horizo​​ntalScrollView和ViewPager。

这是我的代码

    String [] text=new String[]{"Hello","Hi","Alloha",
            "Bonjour","Hallo","¡Hola"};

    Gallery gallery;

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

        gallery = (Gallery)findViewById(R.id.gallery1);

        ArrayAdapter<String> adapter = new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_gallery_item,text);
        gallery.setAdapter(adapter);

    }

和activity_gallery.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context=".GalleryActivity" >

    <Gallery
        android:id="@+id/gallery1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

</RelativeLayout>

显示空白。我正在使用android 4.2.2 API 17。我不知道发生了什么。任何人都可以帮助我!!!!

0 个答案:

没有答案