[Solved] How can I add two button (one is back, one is next) under scrollview that filled with textview and imageview in a screen, android?


This is what XML is for.

Create your layout in xml and import it via java.

You will want to create your own “bar layout” for the bars in the center, though you could I suppose, fill 3 separate LinearLayouts to achieve the same effect, making a separate layout and putting in it here will be easier for you to read, and follow along with what is happening.

Below is a mock up of the xml layout you would be using to get a view very similar to what you have in your picture. I have not tested this, this was made on the fly so it may not be perfect but it will get you very close to what you are looking for.

<LinearLayout>
    android:orientation="vertical"
    android:weightSum=10
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <RelativeLayout>
        android:weight=1
        android:layout_height=0dp
        android:layout_width="match_parent">
        <TextView>
            android:width="wrap_content"
            android:id="@+id/info_bar"
            android:centerHorizontal="true"/>
    </RelativeLayout>
    <LinearLayout>
        android:weight=8
        android:width="match_parent"
        android:height=0dp>
        <TextView>
            android:id="@+id/text_view1"
            android:width="match_parent"
            android:height="wrap_content"/>
       <com.yourpackage.yourapp.createabarlayout>
       </com.yourpackage.yourapp.createabarlayout>
       <com.yourpackage.yourapp.createabarlayout>
       </com.yourpackage.yourapp.createabarlayout>
       <com.yourpackage.yourapp.createabarlayout>
       </com.yourpackage.yourapp.createabarlayout>
    </LinearLayout>
    <RelativeLayout>
        android:weight=1
        android:layout_width="match_parent"
        android:layout_height=0dp>
        <Button>
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/back_button"
            android:text="@string/back_button_hint"/>
        <TextView>
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/steps_textview"
            android:text="@string/steps_hint"
            android:centerHorizontal="true"/>
       <Button>
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:id="@+id/next_button"
            android:text="@string/next_button_hint"/>
    </RelativeLayout>
</LinearLayout>

2

solved How can I add two button (one is back, one is next) under scrollview that filled with textview and imageview in a screen, android?