Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am doing one application in android but i have one problem in layout file i am doing by viewFliper here is code

      <?xml version="1.0" encoding="utf-8"?>
<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" >


    <TextView
        android:id="@+id/Quesiontext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="44dp"
        android:text="@string/Question"
        android:textSize="18sp" />

    <RadioGroup
        android:id="@+id/radioGroupOptions"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/Quesiontext"
        android:layout_marginTop="30dp" >

        <RadioButton
            android:id="@+id/optionOne"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="false"
            android:text="@string/option1" />

        <RadioButton
            android:id="@+id/optionTwo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/option2" />

        <RadioButton
            android:id="@+id/optionthree"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/option3" />

        <RadioButton
            android:id="@+id/optionFour"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/option4" />
    </RadioGroup>

    <TextView
        android:id="@+id/corrertView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/radioGroupOptions"
        android:layout_marginRight="48dp"
        android:text="@string/correct" />

    <Button
        android:id="@+id/btnNext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/corrertView"
        android:layout_below="@+id/corrertView"
        android:layout_marginTop="42dp"
        android:text="@string/Next"
        android:textSize="16sp" />

    <Button
        android:id="@+id/Btnpervious"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/btnNext"
        android:layout_alignBottom="@+id/btnNext"
        android:layout_alignParentLeft="true"
        android:text="@string/Pervious"
        android:textSize="16sp" />



<RelativeLayout 
    android:id="@+id/layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <ViewFlipper
            android:id="@+id/ViewFlipper01"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" >

         <TextView
        android:id="@+id/Quesiontext"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginTop="44dp"
        android:text="@string/Question"
        android:textSize="18sp" />

    <RadioGroup
        android:id="@+id/radioGroupOptions"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/Quesiontext"
        android:layout_marginTop="30dp" >

        <RadioButton
            android:id="@+id/optionOne"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:checked="false"
            android:text="@string/option1" />

        <RadioButton
            android:id="@+id/optionTwo"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/option2" />

        <RadioButton
            android:id="@+id/optionthree"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/option3" />

        <RadioButton
            android:id="@+id/optionFour"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/option4" />
    </RadioGroup>

    <TextView
        android:id="@+id/corrertView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_below="@+id/radioGroupOptions"
        android:layout_marginRight="48dp"
        android:text="@string/correct" />

            </ViewFlipper>
</RelativeLayout>
</RelativeLayout>

i didnt get it that how i put another button into ViewFliper ..its confusion and generating error...

share|improve this question
post your logcat error here :) – AndroidLearner Dec 10 '12 at 11:06
hey i dnot have any logcat error ..i have error in xml like thisCouldn't resolve resource @id/layout – Surabhi Kale Dec 10 '12 at 11:10
ohhh.. my bad i didn't notice the first line. :) – AndroidLearner Dec 10 '12 at 11:15

2 Answers

up vote 0 down vote accepted

Could this be what you are looking for,

android:id="@+id/layout"  

You missed a "+" symbol while creating a id.

share|improve this answer
No grammar constraints (DTD or XML Schema) referenced in the document.but now it give me this error – Surabhi Kale Dec 10 '12 at 11:20
Could you plz try one of the solution suggested here stackoverflow.com/q/4551783/603744 – Andro Selva Dec 10 '12 at 11:21

You haven't closed your ViewFlipper with </ViewFlipper>

share|improve this answer
sorry for that i forget that...but include that in code but it still give me error means not perfect layout can u guide me how i put all layout in it – Surabhi Kale Dec 10 '12 at 11:16

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.