0

プロジェクトのドローアブルファイルに含まれる5枚の写真をアプリに表示させようとしています。ユーザーが初めて「次へ」ボタンをタップすると最初の写真が表示され、2番目の写真をタップすると2番目の写真が表示されます。 . しかし、「戻る」ボタンをタップすると前の画像が表示されます。たとえば、ユーザーは「次へ」ボタンを 4 回クリックし、「戻る」ボタンをタップすると 3 番目の画像が表示されます。

ジャバコード:

package com.example.tables;
import android.app.ActionBar;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.view.animation.Animation;
import android.view.animation.AnimationUtils;
import android.widget.ImageSwitcher;
import android.widget.ImageView;
import android.widget.ViewSwitcher.ViewFactory;

public class MainActivity extends Activity implements ViewFactory{

ImageSwitcher imgS;

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

    imgS=(ImageSwitcher)findViewById(R.id.imageSwitcher1);
    imgS.setFactory(this);

    Animation inShow=AnimationUtils.loadAnimation(this, android.R.anim.slide_in_left);
    imgS.setInAnimation(inShow);

    Animation outShow=AnimationUtils.loadAnimation(this, android.R.anim.slide_out_right);
    imgS.setOutAnimation(outShow);
}

@Override
public View makeView() {

    ImageView tableImage=new ImageView(getApplicationContext());
    tableImage.setScaleType(ImageView.ScaleType.FIT_CENTER);///mal2 alcenter

    tableImage.setLayoutParams(new ImageSwitcher.LayoutParams(ActionBar.LayoutParams.WRAP_CONTENT , ActionBar.LayoutParams.WRAP_CONTENT));

    return tableImage;
}


public void buttonNext(View view){
    imgS.setImageResource(R.drawable.i);
}

public void buttonBack(View view){
    imgS.setImageResource(R.drawable.ii);
     }
}

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="com.example.tables.MainActivity" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

            <RadioButton
                android:id="@+id/radioButton1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Reserve table" />

            <TextView
                android:id="@+id/selectTableViewText"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textSize="12sp"
                android:textColor="#f00"
                android:layout_marginLeft="30dp"
                android:text="Please check the button up to Reserve the table">
            </TextView>

        <ImageSwitcher
            android:id="@+id/imageSwitcher1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1" >

        </ImageSwitcher>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0" >

            <Button
                android:id="@+id/button1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Next" 
                android:onClick="buttonNext"
                android:layout_weight="1"/>

            <Button
                android:id="@+id/button2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Back"
                android:onClick="buttonBack" 
                android:layout_weight="1"/>

        </LinearLayout>

    </LinearLayout>

</RelativeLayout>
4

1 に答える 1