這篇文章給大家介紹Android開發(fā)中實(shí)現(xiàn)一個頭像滑動變大變小功能,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
成都創(chuàng)新互聯(lián)是一家專注于網(wǎng)站設(shè)計(jì)制作、做網(wǎng)站與策劃設(shè)計(jì),南溪網(wǎng)站建設(shè)哪家好?成都創(chuàng)新互聯(lián)做網(wǎng)站,專注于網(wǎng)站建設(shè)十年,網(wǎng)設(shè)計(jì)領(lǐng)域的專業(yè)建站公司;建站業(yè)務(wù)涵蓋:南溪等地區(qū)。南溪做網(wǎng)站價(jià)格咨詢:13518219792
實(shí)現(xiàn)
通過監(jiān)聽ScrollView在Y軸的滑動距離,然后在代碼中動態(tài)設(shè)置頭像的位置和大小。
public class MainActivity extends AppCompatActivity { private CircleImageView ivPortrait; private ObservableScrollView scrollView; private ViewGroup.MarginLayoutParams marginLayoutParams; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); initView(); } private void initView() { ivPortrait = (CircleImageView) findViewById(R.id.iv_portrait); scrollView = (ObservableScrollView) findViewById(R.id.scrollView); marginLayoutParams = new ViewGroup.MarginLayoutParams(ivPortrait.getLayoutParams()); scrollView.setScrollViewListener(new ObservableScrollView.ScrollViewListener() { @Override public void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy) { // 設(shè)置頭像距離頂部的距離 int top = dp2px(70) - y; if (top < dp2px(10)) { // 固定在標(biāo)題欄 marginLayoutParams.setMargins(dp2px(20), dp2px(10), 0, 0); } else { // 向上移動 marginLayoutParams.setMargins(dp2px(20), dp2px(70) - y, 0, 0); } // 根據(jù)向上滑動的距離設(shè)置頭像的大小 FrameLayout.LayoutParams layoutParams = new FrameLayout.LayoutParams(marginLayoutParams); // 頭像最大為45dp,最小為30dp int height = dp2px(45) - y < dp2px(30) ? dp2px(30) : dp2px(45) - y; layoutParams.height = height; layoutParams.width = height; ivPortrait.setLayoutParams(layoutParams); } }); } private int dp2px(float dp) { return (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp, getResources().getDisplayMetrics()); } }
布局文件
<?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:background="#FFF"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <RelativeLayout android:layout_width="match_parent" android:layout_height="50dp" android:background="#F2F4F7"> ... </RelativeLayout> <com.yl.jdfinanceindex.ObservableScrollView android:id="@+id/scrollView" android:layout_width="match_parent" android:layout_height="match_parent" android:overScrollMode="never" android:scrollbars="none"> <LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <RelativeLayout android:layout_width="match_parent" android:layout_height="80dp" android:background="#F2F4F7"> ... </RelativeLayout> <View android:layout_width="match_parent" android:layout_height="1000dp" /> </LinearLayout> </com.yl.jdfinanceindex.ObservableScrollView> </LinearLayout> <com.yl.jdfinanceindex.CircleImageView android:id="@+id/iv_portrait" android:layout_width="45dp" android:layout_height="45dp" android:layout_marginLeft="20dp" android:layout_marginTop="70dp" android:src="@mipmap/ic_portrait" /> </FrameLayout>
原生的ScrollView是不支持滑動監(jiān)聽的,需要自定義一個ObservableScrollView。
public class ObservableScrollView extends ScrollView { private ScrollViewListener scrollViewListener; public ObservableScrollView(Context context) { super(context); } public ObservableScrollView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public ObservableScrollView(Context context, AttributeSet attrs) { super(context, attrs); } public void setScrollViewListener(ScrollViewListener scrollViewListener) { this.scrollViewListener = scrollViewListener; } @Override protected void onScrollChanged(int x, int y, int oldx, int oldy) { super.onScrollChanged(x, y, oldx, oldy); if (scrollViewListener != null) { scrollViewListener.onScrollChanged(this, x, y, oldx, oldy); } } public interface ScrollViewListener { void onScrollChanged(ObservableScrollView scrollView, int x, int y, int oldx, int oldy); } }
關(guān)于Android開發(fā)中實(shí)現(xiàn)一個頭像滑動變大變小功能就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
新聞標(biāo)題:Android開發(fā)中實(shí)現(xiàn)一個頭像滑動變大變小功能
瀏覽路徑:http://aaarwkj.com/article22/jjjocc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站排名、服務(wù)器托管、微信公眾號、電子商務(wù)、網(wǎng)站營銷、虛擬主機(jī)
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)