我正在开发一个包含 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 );
}
}