我可以在不使用 ScrollView/ListView 的情况下使用 Pull to Refresh 吗?
Posted
技术标签:
【中文标题】我可以在不使用 ScrollView/ListView 的情况下使用 Pull to Refresh 吗?【英文标题】:Can I use Pull to Refresh without using ScrollView/ListView? 【发布时间】:2015-11-16 08:47:14 【问题描述】:我尝试在我的应用中实现 Pull to Refresh。
我用 android.support.v4.widget.SwipeRefreshLayout 包装了我的 xml 代码,它可以工作,但 GUI 看起来不太好。
当我下拉时,我应该会看到带有我定义颜色的常规动画圆圈图标,对吗?但我认为它是一个空白圆圈,而不是应有颜色的旋转圆圈。
此外,我不能“玩”它,甚至在我拉它之后按住它一段时间,它会下降一秒钟(做它做的事情)然后消失。
我认为这是因为我没有使用 ListView 而是使用 LinearLayout。
你怎么看?
代码:
XML:
<android.support.v4.widget.SwipeRefreshLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
android:id="@+id/swipe">
<LinearLayout
android:layout_
android:paddingLeft="@dimen/activity_horizontal_margin"
android:orientation="vertical"
android:layout_
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="#7B68EE"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".HomeActivity">
<LinearLayout
android:layout_
android:layout_
android:id="@+id/loin"
android:orientation="horizontal">
<TextView
android:layout_
android:layout_
android:textAppearance="?android:attr/textAppearanceLarge"
android:text="@string/welcome"
android:textColor="#B0C4DE"
android:id="@+id/welcomeBackID"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/webViewCurren"
android:layout_alignEnd="@+id/webViewCurren" />
....
</android.support.v4.widget.SwipeRefreshLayout>
Java:
public class HomeActivity extends AppCompatActivity implements SwipeRefreshLayout.OnRefreshListener
SwipeRefreshLayout mSwipeRefreshLayout;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_home);
mSwipeRefreshLayout = (SwipeRefreshLayout) findViewById(R.id.swipe);
mSwipeRefreshLayout.setColorSchemeResources(android.R.color.holo_green_light,
android.R.color.holo_blue_bright,
android.R.color.holo_orange_light,
android.R.color.holo_red_light);
mSwipeRefreshLayout.setOnRefreshListener(this);
@Override
public void onRefresh()
Toast.makeText(this, "Refresh", Toast.LENGTH_SHORT).show();
sharedPrefEditor.putString("coordinateX", "34.7");
sharedPrefEditor.putString("coordinateY", "32.5");
sharedPrefEditor.putString("saved", "false");
sharedPrefEditor.commit();
new Handler().postDelayed(new Runnable()
@Override
public void run()
mSwipeRefreshLayout.setRefreshing(false);
, 3000);
【问题讨论】:
【参考方案1】:尝试更改SwipeRefreshLayout
配色方案。
swipeRefreshLayout.setColorSchemeColors(
Color.RED, Color.GREEN, Color.BLUE, Color.CYAN);
此外,SwipeRefreshLayout
将仅在 onRefresh()
完成执行之前可见。
【讨论】:
以上是关于我可以在不使用 ScrollView/ListView 的情况下使用 Pull to Refresh 吗?的主要内容,如果未能解决你的问题,请参考以下文章
我可以在不返回 html 文件的情况下使用 NodeJS 吗?
为啥我可以在不使用 std::getline 的情况下调用 getline?