美文网首页
Android 杂记 - 底部View

Android 杂记 - 底部View

作者: 琼珶和予 | 来源:发表于2018-06-18 21:49 被阅读0次

      正式进入公司实习了,想想还是挺激动的。最近公司要求实现一个小需求,类似下面的动图:



      注意底部的123,当那个TextView还未显示时,底部的123时贴在屏幕的下方,但是当底部的TextView显示了,123就跟着底部的TextView跑。
      这个需求还是简单,最开始的时候还不知道这个功能怎么实现,现在想一想,非常简单,都不需要自定义View。

    1.实现方法

      简单的分析了一下这个功能的要求。现在就来将一下这个功能实现的方法。
      首先,分析两种情况:1.当图片的长度小于屏幕的高度,也就是说,应用一启动,TextView就可以看见,此时123直接显示在TextView的上面就行了;2.图片的长度大于屏幕的高度,就如上面的图片,当TextView不可见时,123显示在屏幕的底部,当TextView可见时,123就显示在TextView上面的。
      所以,这里有个关键,在最开始时,TextView是否是可见,因为TextView决定123的位置。有个简单的解决版本,就是获取TextView的位置,进而进行判断。我们都知道在一个Activity里面想要获取一个View的宽高和位置,这些不能直接来获取,方法有很多种,这里,我采用的是全局的视图树监听器方法。
      具体的实现方法是:我们先计算123与TextView的距离,如果TextView不可见的话,那么则计算123与屏幕底部的距离,然后更改123的距离。

    2.代码

      先简单的看一下布局代码:

    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/root"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">
    
        <ScrollView
            android:id="@+id/scrollView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    
            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">
    
                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="fitXY"
                    android:src="@mipmap/demo" />
    
                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="fitXY"
                    android:src="@mipmap/demo2" />
    
                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:scaleType="fitXY"
                    android:src="@mipmap/demo3" />
    
                <TextView
                    android:id="@+id/textView"
                    android:layout_width="match_parent"
                    android:layout_height="1000dp"
                    android:gravity="center"
                    android:text="我是一个TextView"
                    android:textSize="20sp" />
            </LinearLayout>
        </ScrollView>
    
        <TextView
            android:id="@+id/bottom_textView"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="123"
            android:textColor="#00FF00"
            android:textSize="25sp" />
    </android.support.constraint.ConstraintLayout>
    

      再来看看Activity的代码:

    public class MainActivity extends AppCompatActivity{
        private ScrollView mScrollView = null;
        private TextView mTextView = null;
        private TextView mBottomTextView = null;
        private View mRootView = null;
        private boolean mOnce = false;
        @RequiresApi(api = Build.VERSION_CODES.M)
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN);
            setContentView(R.layout.activity_main);
            mScrollView = findViewById(R.id.scrollView);
            mTextView = findViewById(R.id.textView);
            mBottomTextView = findViewById(R.id.bottom_textView);
            mRootView = findViewById(android.R.id.content);
            mRootView.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
                @Override
                public void onGlobalLayout() {
                    adjustViewPosition();
                    if(!mOnce){
                        mScrollView.setOnScrollChangeListener(new View.OnScrollChangeListener(){
    
                            @Override
                            public void onScrollChange(View v, int scrollX, int scrollY, int oldScrollX, int oldSc) {
                                adjustViewPosition();
                            }
                        });
                        mOnce = true;
                    }
                }
            });
        }
    
        private void adjustViewPosition() {
            int p[] = new int[2];
            mBottomTextView.getLocationOnScreen(p);
            int bp[] = new int[2];
            mTextView.getLocationOnScreen(bp);
            int bottom = mRootView.getBottom();
    
            int newBottom = bp[1] - p[1] - mBottomTextView.getMeasuredHeight();
            if(bp[1] > bottom){
                newBottom = Math.min(newBottom, bottom - p[1] - mBottomTextView.getMeasuredHeight());
            }
            mBottomTextView.setTranslationY(mBottomTextView.getTranslationY() + newBottom);
        }
    
    }
    

      在代码中,我通过adjustViewPosition方法来不断的调整123的位置。其中,getLocationOnScreen方法来获取这个在屏幕的坐标。我获取了mBottomTextView和mTextView的屏幕坐标,然后计算他们之间的距离,然后计算mBottom与屏幕底部的距离,最后在通过setTranslationY方法来对mBottomTextView进行位置更新。
      这里需要注意的是,newBottom是差量值,所以需要加上mBottomTextView当前的TranslationY。

    相关文章

      网友评论

          本文标题:Android 杂记 - 底部View

          本文链接:https://www.haomeiwen.com/subject/oeqoeftx.html