国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

Android仿京東金融首頁(yè)頭像效果

2019-12-12 03:48:39
字體:
來(lái)源:轉(zhuǎn)載
供稿:網(wǎng)友

1.介紹

看下效果圖,gif錄的有些卡頓,在真機(jī)上運(yùn)行效果很好。

2.實(shí)現(xiàn)

很有意思的一個(gè)效果,原理其實(shí)很簡(jiǎn)單,就是通過(guò)監(jiān)聽(tīng)ScrollView在Y軸的滑動(dòng)距離,然后在代碼中動(dòng)態(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 {  // 向上移動(dòng)  marginLayoutParams.setMargins(dp2px(20), dp2px(70) - y, 0, 0); } // 根據(jù)向上滑動(dòng)的距離設(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是不支持滑動(dòng)監(jiān)聽(tīng)的,需要自定義一個(gè)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); }}

3.寫(xiě)在最后

歡迎同學(xué)們吐槽評(píng)論,如果你覺(jué)得本篇博客對(duì)你有用,那么就留個(gè)言或者頂一下吧(^-^)

完整的Demo下載

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持武林網(wǎng)。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 泊头市| 庄浪县| 阳朔县| 林西县| 内江市| 永宁县| 双辽市| 黑龙江省| 醴陵市| 鄯善县| 武清区| 华容县| 海盐县| 扬中市| 温宿县| 丽水市| 房山区| 德兴市| 甘南县| 宜城市| 咸阳市| 阿拉善左旗| 海兴县| 北海市| 客服| 武冈市| 长岭县| 阿克陶县| 武川县| 台南市| 旬邑县| 改则县| 陇西县| 长寿区| 双柏县| 阿勒泰市| 澄江县| 祥云县| 荣成市| 石景山区| 巴中市|