RemoteViews ListView setScrollPosition丢失

时间:2018-09-23 04:12:49

标签: android android-appwidget android-appwidget-list

我正在处理一个包含ListView的应用程序小部件。我希望能够在刷新时滚动到特定的行,而我正在使用RemoteViews.setRelativeScrollPosition,但是它实际上总是会丢失,要么滚动太远,要么所需的行距顶部的一半,或者距离不够远,因此它位于小部件顶部下方。我希望它在小部件顶部对齐。我尝试使用setScrollPosition而不是setRelativeScrollPosition,但是它根本没有滚动(所需的行仍显示在更下方)。

我是在做错什么,错过了什么,还是只是无法将ListView滚动到小部件中的特定位置?我不需要滚动效果,如果它突然出现在正确的位置,我会很高兴。

这是我的主要小部件布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:layout_height="match_parent"
          android:layout_width="match_parent"
          android:orientation="vertical"
          android:padding="@dimen/widget_margin"
          style="@style/AppTheme.WidgetMain">

<RelativeLayout android:id="@+id/title_layout"
    android:layout_height="wrap_content"
    android:layout_margin="1dp"
    android:layout_width="match_parent"
    style="@style/AppTheme.Title.Background">
    <TextView android:id="@+id/appwidget_title"
              android:contentDescription="@string/appwidget_title"
              android:layout_alignParentStart="true"
              android:layout_centerVertical="true"
              android:layout_height="wrap_content"
              android:layout_margin="1dp"
              android:layout_toStartOf="@+id/button_refresh"
              android:layout_width="wrap_content"
              android:paddingEnd="2dp"
              android:paddingStart="2dp"
              android:text="@string/appwidget_title"
              style="@style/AppTheme.Title" />
    <ImageButton android:id="@+id/button_refresh"
                 android:contentDescription="@string/button_refresh"
                 android:layout_centerVertical="true"
                 android:layout_height="wrap_content"
                 android:layout_marginEnd="20dp"
                 android:layout_toStartOf="@id/button_settings"
                 android:layout_width="wrap_content"
                 android:src="@drawable/ic_refresh"
                 style="@style/AppTheme.WidgetMain.Button" />
    <ImageButton android:id="@+id/button_settings"
                 android:contentDescription="@string/button_settings"
                 android:layout_alignParentEnd="true"
                 android:layout_centerVertical="true"
                 android:layout_height="wrap_content"
                 android:layout_marginEnd="10dp"
                 android:layout_width="wrap_content"
                 android:src="@android:drawable/ic_menu_preferences"
                 style="@style/AppTheme.WidgetMain.Button" />
</RelativeLayout>

<LinearLayout android:id="@+id/header_layout"
    android:layout_height="wrap_content"
    android:layout_marginEnd="1px"
    android:layout_marginStart="1px"
    android:layout_width="match_parent"
    android:orientation="horizontal"
    style="@style/AppTheme.Background" />

<ListView android:id="@+id/grid"
          android:divider="@null"
          android:layout_gravity="center"
          android:layout_height="0dp"
          android:layout_weight="1"
          android:layout_width="match_parent"
          android:scrollbars="none" />

</LinearLayout>

ListView用以下布局的行填充到代码中:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:id="@+id/box"
          android:clipChildren="false"
          android:clipToPadding="false"
          android:layout_gravity="fill"
          android:layout_height="83dp"
          android:layout_weight="1"
          android:layout_width="0dp"
          android:orientation="vertical"
          style="@style/AppTheme.Background">

</LinearLayout>

然后,用以下内容在RemoteViewsService中滚动它:

@Override
    public void onDataSetChanged()
    {
        /* Scroll the view if the option is checked */
        if ( _context.getSharedPreferences(
            MainPreferencesFragment.getSharedPreferencesFileName( _appWidgetId ),
            Context.MODE_PRIVATE ).
            getBoolean( MainPreferencesFragment.PREF_KEY_SCROLL, false ) )
            {
                /* Set up the handler thread */
                final HandlerThread thread = new HandlerThread( "Widget-worker" );
                thread.start();
                Handler queue = new Handler( thread.getLooper() );
                /* Post a delayed action to the thread to set the scroll position */
                queue.postDelayed( new Runnable()
                {
                    @Override
                    public void run()
                    {
                        String packageName = _context.getPackageName();
                        RemoteViews rv = new RemoteViews( packageName, R.layout.widget );
                        rv.setRelativeScrollPosition( R.id.grid, _currentPosition );
                        AppWidgetManager appWidgetManager = AppWidgetManager.getInstance( _context );
                        appWidgetManager.partiallyUpdateAppWidget( _appWidgetId, rv );
                        thread.quitSafely();
                    }
                }, 100 );
            }
    }

1 个答案:

答案 0 :(得分:0)

基于this response,我分两步设法将<script> var cars = document.getElementById("timepicker").value; var text = ""; var i; for (i = 0; i < cars.length; i++) { if (cars[i] == " " && (cars[i+1]!= "a" && cars[i+1]!= "p")){ i++; } text += cars[i]; } document.getElementById("time_v").value = text; </script> 中的ListView滚动到正确对齐的位置:首先更新小部件,然后使用RemoteViews,一旦(希望)填充了小部件,请滚动到所需位置并调用Handler

在您的partiallyUpdateAppWidget中,在您的AppWidgetProvider方法中:

onUpdate