0

在我的 XML 中,我有一个包含两个相对布局(一个在顶部,一个在底部)的线性布局。底部的相对布局包含一个 ViewFlipper,我想用它来显示图像。现在,我正在尝试将这些图像放在 Java 中的文件列表中,这样我就可以在“for 循环”中访问它们,如果这有意义的话。我正在尝试在 Java 中定义底部相对布局,以便可以将 ViewFlipper 放入其中。当我尝试使用 findViewByID 时,我为布局创建的 ID(在 XML 中)不会作为选项弹出。我是否以正确的方式进行该过程,还是可以尝试另一种方式?这是Java代码的那一部分:

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
brl = (RelativeLayout) findViewById(R.id.);
vf = (ViewFlipper) findViewById(R.id.Flipper);

我的 XML:

<LinearLayout 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:orientation="vertical"
    tools:context=".Analysis"
    android:id="@+id/mainLL" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="350dp"
        android:layout_gravity="top"
        android:id="@+id/topRL" >

        <TextView
            android:id="@+id/textViewFilename"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:layout_marginTop="16dp"
            android:gravity="center"
            android:text="Filename"
            android:textAlignment="center"
            android:textSize="35dp" />

        <TextView
            android:id="@+id/textViewSpecies"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/textViewFilename"
            android:gravity="center"
            android:text="Frog Species"
            android:textSize="40dp" />

        <EditText
            android:id="@+id/editTextLocation"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/textViewSpecies"
            android:layout_centerHorizontal="true"
            android:layout_marginTop="19dp"
            android:ems="10"
            android:hint="What is your location?" />

        <Button
            android:id="@+id/buttonSave"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_centerHorizontal="true"
            android:gravity="center"
            android:text="SAVE" />
    </RelativeLayout>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="bottom"
        android:id="@+id/bottomRL" >

        <ViewFlipper
            android:id="@+id/Flipper"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentLeft="true"
            android:layout_centerVertical="true" >
        </ViewFlipper>
    </RelativeLayout>

</LinearLayout>
4

1 回答 1

4

方法setContentView(int resId)缺失;所以你试图Viewnull Content中找到一个,这就是为什么它会给你一个NullPointerException

@Override
public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
       // IMPORTANT : set a content layout to your activity before retreiving any view
        setContentView(R.layout.activity_main);
        brl = (RelativeLayout) findViewById(R.id.);
        vf = (ViewFlipper) findViewById(R.id.Flipper);
}
于 2013-06-05T15:44:13.823 回答