mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-29 07:52:45 +00:00
9 lines
198 B
Java
9 lines
198 B
Java
package com.limelight.ui;
|
|
|
|
import android.widget.AbsListView;
|
|
|
|
public interface AdapterFragmentCallbacks {
|
|
int getAdapterFragmentLayoutId();
|
|
void receiveAbsListView(AbsListView gridView);
|
|
}
|