Android笔记——双碎片实现多个数据滑动显示

之前看《第一行代码》,敲完了最后一个项目酷欧天气,后来想着自己能不能将这个APP的功能扩展更新一下。就把酷偶天气和手机上的天气预报进行了比较,发现酷欧天气只能查看一个城市的天气数据,而手机上的天气预报可以通过添加城市来查看多个城市的数据,要做的就是添加,然后通过手指滑动查看多个已添加的城市天气数据。
看到滑动我就想到碎片,可由于是新手,刚开始想的总是很简单,想着要实现滑动效果的话就要有多个碎片,所以每添加一个城市就要添加一个碎片来显示城市的数据,让碎片和城市一一对应,还想着能不能把碎片写成数组。。。
后来问了相关贴吧又思考了一两天,才想出了办法:用两个碎片实现手机界面滑动的视觉效果,然后让在界面上的碎片显示你要的城市数据。
由于要动手修改酷欧天气对我来说是个大工程,所以我就又写了个小工程做了一下实验。用两个碎片显示数字,通过添加和删除按钮决定你最多要几个数字,再通过滑动查看你当前要查看的是第几个数字。


20180203_223716.gif

界面十分简单,就俩,一个是碎片,一个是MainAcitivity
碎片就用于显示数字:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#000"
        android:layout_above="@+id/Text_1"/>
    <TextView
        android:id="@+id/Text_1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="1"
        android:textSize="100dp"
        android:layout_centerInParent="true"/>
    <View
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:background="#000"
        android:layout_below="@+id/Text_1"/>
</RelativeLayout>

MainAcitivity用于显示碎片和添加删除按钮

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

    <FrameLayout
        android:id="@+id/fragment"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1">
    </FrameLayout>
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <Button
            android:id="@+id/btn_add"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:text="Add"/>
        <Button
            android:id="@+id/btn_delete"
            android:layout_width="wrap_content"
            android:layout_height="50dp"
            android:layout_weight="1"
            android:text="Delete"/>
    </LinearLayout>

</LinearLayout>

之后是两个碎片的代码,其实两个碎片完全一样,只是为了有滑动的视觉效果,才写两个碎片的,在这就上其中一个。

public class Fragment_One extends Fragment {
    @Nullable
    private View view;
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        view=inflater.inflate(R.layout.fragment,container,false);
        return view;
    }
    public void setNum(String num){
        TextView textView=(TextView)view.findViewById(R.id.Text_1);
        textView.setText(num);
    }
}

setNum(String num)是为了让MainAcitivity在碎片滑动时调用更新数据用的。
接着是MainAcitivity:
MainAcitivity变量的定义

    private FragmentTransaction transaction;
    private Fragment_One fragment_one;
    private Fragment_Two fragment_two;
    private int RIGHT=0;
    private int LEFT=1;
    private int STATE=1;
    private int i=1;
    private int max=1;
    public static float x1=0;
    public static float x2=0;

RIGHT和LEFT是根据手势操作判断当前是向左还是向右滑动,i表示当前显示的是数字几,max表示添加的最大数值,x1和x2表示手指按下和松开屏幕时的横轴位置。

protected void onCreate(Bundle savedInstanceState){
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        fragment_one=new Fragment_One();
        fragment_two=new Fragment_Two();
        transaction=getSupportFragmentManager().beginTransaction();
        transaction.add(R.id.fragment,fragment_one);
        transaction.add(R.id.fragment,fragment_two);
        transaction.hide(fragment_two);
        transaction.commit();
        Button btn_add=(Button)findViewById(R.id.btn_add);
        Button btn_del=(Button)findViewById(R.id.btn_delete);
        btn_add.setOnClickListener(this);
        btn_del.setOnClickListener(this);
    }

先添加两个碎片,再将第二个碎片隐藏,btn_add和btn_del表示max++和max--。

手势操作:

public boolean onTouchEvent(MotionEvent event) {
        //继承了Activity的onTouchEvent方法,直接监听点击事件
        if (event.getAction() == MotionEvent.ACTION_DOWN) {
            //当手指按下的时候
            x1 = event.getX();
        }
        if(event.getAction()==MotionEvent.ACTION_UP){
            //当手指放开的时候
            x2=event.getX();
            if(x2-x1>50){//右滑
                setTabSelected(RIGHT,STATE);
            }else if(x1-x2>50){//左滑
                setTabSelected(LEFT,STATE);
            }
        }
        return super.onTouchEvent(event);
    };

右滑左滑的具体操作:

private void setTabSelected(int lr,int frag_state){
        transaction=getSupportFragmentManager().beginTransaction();
        if (lr==1){//右滑
            transaction.setCustomAnimations(R.anim.push_left_in,R.anim.push_left_out);
                if(i<max){
                    i++;
                    judgeState(frag_state,transaction,i);
                }
        }else if(lr==0){//左滑
            transaction.setCustomAnimations(R.anim.push_right_in,R.anim.push_right_out);
            if(i>1){
                i--;
                judgeState(frag_state,transaction,i);
            }
        }
        transaction.commit();
    }

lr表示向左还是向右,frag_state表示当前显示的是第几个碎片,若右滑则执行右滑的动画,然后i++,再跳入judgeState方法进行碎片一和碎片二切换的具体操作。若左滑则相反。

private void judgeState(int frag_state,FragmentTransaction transaction,int num){
        if(frag_state==1){
            transaction.hide(fragment_one);
            fragment_two.setNum(num+"");
            transaction.show(fragment_two);
            STATE=2;
        }else if(frag_state==2){
            transaction.hide(fragment_two);
            fragment_one.setNum(num+"");
            transaction.show(fragment_one);
            STATE=1;
        }
    }

若frag_state为1,表示当前显示的是碎片一,而接下来要显示的是碎片二,所以碎片一隐藏,

transaction.hide(fragment_one);

碎片二数据更新,

fragment_two.setNum(num+"");

碎片二显示,

transaction.show(fragment_two);

状态STATE改为2。

STATE=2;

若frag_state为2则相反。

最后是左滑右滑的动画:
push_left_in:

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="100%p" android:toXDelta="0"
        android:duration="200" />
</set>

push_left_out:

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="0" android:toXDelta="-100%p"
        android:duration="200" />
</set>

push_right_in:

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="-100%p" android:toXDelta="0"
        android:duration="200" />
</set>

push_right_out:

<set xmlns:android="http://schemas.android.com/apk/res/android">
    <translate android:fromXDelta="0" android:toXDelta="100%p"
        android:duration="200" />
</set>
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,752评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,100评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,244评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,099评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,210评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,307评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,346评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,133评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,546评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,849评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,019评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,702评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,331评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,030评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,260评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,871评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,898评论 2 351

推荐阅读更多精彩内容