ViewFlow& CircleFlowIndicator - 空指针异常

时间:2014-08-22 11:21:25

标签: android viewflow

我正在使用ViewFlow& CircleFlowIndicatorview& show

中的indicate圈变为View

对于每个showing same text,我仍然View,见下图:

enter image description here

注意:

仍然显示" Remember Life"在 textView1 和" Instantly search memories for friends ......"在 textView2

现在我想基于View position 显示文字example

如果查看position 0 ,则需要显示" TextView - 1.0"在 textView1 ," TextView - 2.0"在 textView2 中,如果视图position 1 ,则需要显示" TextView - 1.1"在 textView1 ," TextView - 2.1"在 textView2 so on ...

但每次,我都会Null Pointer Exception line number - 35

是:position = viewFlow.getPositionForView(indic);

我怎么知道ViewFlow的当前视图位置?

MainActivity.java: -

public class MainActivity extends Activity {

    private ViewFlow viewFlow;
    TextView textView1, textView2;
    int position = 0;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setTitle(R.string.circle_title);
        setContentView(R.layout.screen_layout);

        viewFlow = (ViewFlow) findViewById(R.id.viewflow);
        viewFlow.setAdapter(new ImageAdapter(this), 1); // default focus on second circle

        CircleFlowIndicator indic = (CircleFlowIndicator) findViewById(R.id.viewflowindic);
        viewFlow.setFlowIndicator(indic);       

        textView1 = (TextView) findViewById(R.id.textView1);
        textView2 = (TextView) findViewById(R.id.textView2);

        position = viewFlow.getPositionForView(indic);
        Toast.makeText(MainActivity.this, position, Toast.LENGTH_LONG).show();

        switch (position) {
        case 0:
            textView1.setText("TextView - 1.0"); // TextView - 1, position - 0
            textView2.setText("TextView - 2.0"); // TextView - 2, position - 0
            break;

        case 1:
            textView1.setText("TextView - 1.1");
            textView2.setText("TextView - 2.1");
            break;

        case 2:
            textView1.setText("TextView - 1.2");
            textView2.setText("TextView - 2.2");
            break;

        case 3:
            textView1.setText("TextView - 1.3");
            textView2.setText("TextView - 2.3");
            break;

        case 4:
            textView1.setText("TextView - 1.4");
            textView2.setText("TextView - 2.4");
            break;

        default:

            break;
        }

    }

    /* If your min SDK version is < 8 you need to trigger the onConfigurationChanged in ViewFlow manually, like this */ 
    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
        viewFlow.onConfigurationChanged(newConfig); 
    }
}

Logcat 报告:

08-22 06:54:53.811: W/dalvikvm(1829): threadid=1: thread exiting with uncaught exception (group=0x41465700)
08-22 06:54:53.840: E/AndroidRuntime(1829): FATAL EXCEPTION: main
08-22 06:54:53.840: E/AndroidRuntime(1829): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.indianic.viewflipperdemo/com.indianic.viewflipperdemo.CircleViewFlipperActivity}: java.lang.NullPointerException
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2211)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2261)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.ActivityThread.access$600(ActivityThread.java:141)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1256)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.os.Handler.dispatchMessage(Handler.java:99)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.os.Looper.loop(Looper.java:137)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.ActivityThread.main(ActivityThread.java:5103)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at java.lang.reflect.Method.invokeNative(Native Method)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at java.lang.reflect.Method.invoke(Method.java:525)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:737)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at dalvik.system.NativeStart.main(Native Method)
08-22 06:54:53.840: E/AndroidRuntime(1829): Caused by: java.lang.NullPointerException
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.widget.AdapterView.getPositionForView(AdapterView.java:597)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at com.indianic.viewflipperdemo.CircleViewFlipperActivity.onCreate(CircleViewFlipperActivity.java:35)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.Activity.performCreate(Activity.java:5133)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
08-22 06:54:53.840: E/AndroidRuntime(1829):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2175)
08-22 06:54:53.840: E/AndroidRuntime(1829):     ... 11 more

XML: -

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res/com.indianic.viewflipperdemo"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

     <com.indianic.viewflipperdemo.widget.ViewFlow
        android:id="@+id/viewflow"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        app:sidebuffer="3" >
    </com.indianic.viewflipperdemo.widget.ViewFlow>

    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="30dp"
        android:src="@drawable/ic_launcher" />

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/textView2"
        android:layout_centerHorizontal="true"
        android:text="Remember Life"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textStyle="bold" />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/viewflowindic"
        android:layout_centerHorizontal="true"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="30dp"
        android:padding="5dp"
        android:text="Instantly search memories of friends, season, birthdays, and more"
        android:textAppearance="?android:attr/textAppearanceSmall" />

    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:orientation="horizontal"
        android:paddingBottom="10dp"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:paddingTop="10dp" >

        <Button
            android:id="@+id/textView"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="left|center"
            android:layout_weight="1"
            android:text="Register"
            android:textColor="#000000" />

        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:layout_weight="1"
            android:text="Login"
            android:textColor="#000000" />
    </LinearLayout>

    <com.indianic.viewflipperdemo.widget.CircleFlowIndicator
        android:id="@+id/viewflowindic"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_above="@+id/linearLayout1"
        android:layout_centerHorizontal="true"
        android:padding="20dp"
        app:inactiveType="stroke" />

</RelativeLayout>

2 个答案:

答案 0 :(得分:2)

异常原因:

您已在onCreate方法中添加了一个用于更改文本的switch-case。这是不正确的。用户输入应由implementing event listeners in Java处理。

解决方案:

向视图添加侦听器。 滑动视图时,侦听器将处理事件并根据位置更改文本。

在视图中添加 setOnViewSwitchListener 并覆盖 onSwitched 方法。

示例代码:

viewFlow.setOnViewSwitchListener(new ViewSwitchListener() {
    public void onSwitched(View v, int position) {
        //position is received as an argument from the system, it doesn't need to be calculated
        switch (position) {
        case 0:
            textView1.setText("TextView - 1.0"); // TextView - 1,
                                                    // position - 0
            textView2.setText("TextView - 2.0"); // TextView - 2,
                                                    // position - 0
            break;
            // ----rest of your code here------

参考文献:

答案 1 :(得分:1)

解决问题---

您可以在此处根据页面位置查找和自定义视图。

MainActivity.Java

package com.example.circleindicatordemo;

import java.util.ArrayList;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentPagerAdapter;
import android.support.v4.view.ViewPager;
import android.view.View;
import android.view.View.OnClickListener;

import com.viewpagerindicator.CirclePageIndicator;

public class MainActivity extends FragmentActivity implements OnClickListener {
    MyAdapter mAdapter;
    ViewPager mPager;
    private CirclePageIndicator mIndicator;
    private static ArrayList<String> arrayList;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        arrayList = new ArrayList<String>();
        arrayList.add("Page1");
        arrayList.add("Page2");
        arrayList.add("Page3");
        arrayList.add("Page4");
        arrayList.add("Page5");

        mAdapter = new MyAdapter(getSupportFragmentManager());
        mPager = (ViewPager) findViewById(R.id.pager);
        mPager.setAdapter(mAdapter);
        mIndicator = (CirclePageIndicator) findViewById(R.id.indicator);
        mIndicator.setViewPager(mPager);
    }

    public static class MyAdapter extends FragmentPagerAdapter {
        public MyAdapter(FragmentManager fragmentManager) {
            super(fragmentManager);
        }

        @Override
        public int getCount() {
            return arrayList.size();
        }

        @Override
        public Fragment getItem(int position) {
            return MyFragment.init(position, arrayList);
        }
    }

    @Override
    public void onClick(View v) {

    }

}

MyFragment.Java -

package com.example.circleindicatordemo;

import java.util.ArrayList;

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;

public class MyFragment extends Fragment implements OnClickListener {
    int position;
    private ArrayList<String> arrayList;
    private TextView tv_name;
    private ImageView iv_image;

    static MyFragment init(int position, ArrayList<String> arrayList) {
        MyFragment giftFragment = new MyFragment();
        Bundle args = new Bundle();
        args.putInt("position", position);
        args.putSerializable("data", arrayList);
        giftFragment.setArguments(args);
        return giftFragment;
    }

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        position = getArguments().getInt("position");
        arrayList = (ArrayList<String>) getArguments().getSerializable("data");
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.my_fragment, container, false);

        tv_name = (TextView) view.findViewById(R.id.tv_name);

        iv_image = (ImageView) view.findViewById(R.id.iv_image);
        tv_name.setText(arrayList.get(position));
        return view;
    }

    @Override
    public void onClick(View arg0) {
        // TODO Auto-generated method stub

    }
}

您还可以查看上述代码here

的完整来源