sách gpt4 ăn đã đi

android - Spotify ListView 标题图片效果

In lại Tác giả: IT Lão Cao 更新时间:2023-10-28 23:17:48 25 4
mua khóa gpt4 giày nike

Android 版本的 Spotify 在查看艺术家时具有独特的 ListView 标题效果。基本上,标题图像似乎保持了它自己的滚动速度,而不是实际列表。有人知道我在说什么吗?如果是这样,有人可以解释如何实现这种效果吗?

这是一个视频链接,概述了我所指的标题图像效果:

http://servestream.sourceforge.net/20130911_200347.mp4

câu trả lời hay nhất

感谢您发布视频。这是视差效应。以下库可以帮助您实现它:

ParallaxScrollView: A Parallax ScrollView which takes a background and foreground view, in the ParallexScrollView.

Link

所以,我继续修改了链接上提供的演示。如果这是您所追求的,请告诉我,我将添加有关我为使其正常工作所做的修改的详细信息。

APK Link

如何获得:

如果在可滚动部分除了 ListView 之外,效果应该很容易实现。因为保存 ListView 的容器是一个扩展的 ScrollView,所以事情变得复杂了。进行了以下修改:

在 Activity 中,膨胀以下布局:


xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/scroll_view"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="match_parent"
tools:context=".DemoActivity" >




<>
android:id="@+id/iv"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="300dp"
android:gravity="center"
android:scaleType="fitXY"
android:src="@drawable/image_to_use" />














<>
android:id="@+id/anotherView"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="match_parent" >


android:id="@+id/llMainHolder"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="wrap_content"
android:layout_marginTop="200dp"
android:orientation="dọc" >

<>
android:id="@+id/tvTitle"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:gravity="center"
android:padding="@dimen/spacing"
android:text="Parallax Effect"
android:textColor="@android:color/white"
android:textSize="21sp"
tools:ignore="NewApi" />




android:id="@+id/llMain"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="wrap_content" >


android:id="@+id/lvMain"
android:layout_width="phù hợp với cha mẹ"
android:layout_height="match_parent"
android:divider="@android:color/black"
android:dividerHeight="2px" >










Activity 代码:

public class DemoActivity extends Activity {

private ParallaxScrollView mScrollView;
private ListView lvMain;
private LinearLayout llMain, llMainHolder;
private AnotherView anotherView;
private ImageView iv;
private TextView tvTitle;

@Ghi đè
được bảo vệ void onCreate(Gói savedInstanceState) {
super.onCreate(savedInstanceState);


// Inflated layout
View mContent = getLayoutInflater().inflate(R.layout.activity_demo, null);

// Initialize components

mScrollView = (ParallaxScrollView) mContent.findViewById(R.id.scroll_view);

llMain = (LinearLayout) mContent.findViewById(R.id.llMain);

llMainHolder = (LinearLayout) mContent.findViewById(R.id.llMainHolder);

lvMain = (ListView) mContent.findViewById(R.id.lvMain);

iv = (ImageView) mContent.findViewById(R.id.iv);

tvTitle = (TextView) mContent.findViewById(R.id.tvTitle);

anotherView = (AnotherView) mContent.findViewById(R.id.anotherView);

String[] array = {"one", "two", "three", "four", "five", "six", "seven", "eight",
"nine", "ten", "evelen", "twelve", "thirteen", "fourteen"};

ArrayAdapter adapter = new ArrayAdapter(this, R.layout.text, array);

lvMain.setAdapter(adapter);

// Set Content
setContentView(mContent);

lvMain.post(new Runnable() {

@Ghi đè
công khai void run() {

// Adjusts llMain's height to match ListView's height
setListViewHeight(lvMain, llMain);

// LayoutParams to set the top margin of LinearLayout holding
// the content.
// topMargin = iv.getHeight() - tvTitle.getHeight()
LinearLayout.LayoutParams p =
(LinearLayout.LayoutParams)llMainHolder.getLayoutParams();
p.topMargin = iv.getHeight() - tvTitle.getHeight();
llMainHolder.setLayoutParams(p);
}
});
}

// Sets the ListView holder's height
public void setListViewHeight(ListView listView, LinearLayout llMain) {
ListAdapter listAdapter = listView.getAdapter();
if (listAdapter == null) {

trở lại;
}

int totalHeight = 0;
int firstHeight = 0;
int desiredWidth = MeasureSpec.makeMeasureSpec(
listView.getWidth(), MeasureSpec.AT_MOST);

for (int i = 0; i < listAdapter.getCount(); i++) {

if (i == 0) {
View listItem = listAdapter.getView(i, null, listView);
listItem.measure(desiredWidth, MeasureSpec.UNSPECIFIED);
firstHeight = listItem.getMeasuredHeight();
}
totalHeight += firstHeight;
}

LinearLayout.LayoutParams params =
(LinearLayout.LayoutParams)llMain.getLayoutParams();

params.height = totalHeight + (listView.getDividerHeight() *
(listAdapter.getCount() - 1));
llMain.setLayoutParams(params);
anotherView.requestLayout();
}
}

包含内容的库 (ObservableScrollView) 提供的 View 扩展了 ScrollView。这导致您要显示的 ListView 出现问题。我添加了 AnotherView 来扩展 LinearLayout:

public class AnotherView extends LinearLayout {

private ScrollCallbacks mCallbacks;

static interface ScrollCallbacks {
public void onScrollChanged(int l, int t, int oldl, int oldt);
}

public void setCallbacks(ScrollCallbacks listener) {
mCallbacks = listener;
}

public AnotherView(Context context, AttributeSet attrs) {
super(bối cảnh, thuộc tính);
}

@Ghi đè
public void draw(Canvas canvas) {
super.draw(canvas);
}

@Ghi đè
protected void onScrollChanged(int l, int t, int oldl, int oldt) {
super.onScrollChanged(l, t, oldl, oldt);
if (mCallbacks != null) {
mCallbacks.onScrollChanged(l, t, oldl, oldt);
}
}

@Ghi đè
public int computeVerticalScrollRange() {
return super.computeVerticalScrollRange();
}

}

最后:库提供了视差效果。视频中的效果是反向视差效果。为了得到想要的结果,需要在 ParallaxScrollView.onLayout() 中做些小改动。代替 final int scrollYCenterOffset = -mScrollView.getScrollY(),使用 final int scrollYCenterOffset = mScrollView.getScrollY()

修改后的库:Link .

演示项目:Link .

APK(修订/带有 ListView):Link .

关于android - Spotify ListView 标题图片效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17932798/

25 4 0
Chứng chỉ ICP Bắc Kinh số 000000
Hợp tác quảng cáo: 1813099741@qq.com 6ren.com
Xem sitemap của VNExpress