Use standard recyclerview for app reordering
- allow dragging by using a drag handler (as per best practice) - remove the custom draglistview dependency - update to the latest android support libraries
This commit is contained in:
parent
562049296c
commit
f80215b37a
|
@ -64,11 +64,11 @@ dependencies {
|
||||||
testCompile "org.robolectric:robolectric:3.2.2"
|
testCompile "org.robolectric:robolectric:3.2.2"
|
||||||
|
|
||||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
compile 'com.android.support:appcompat-v7:25.2.0'
|
compile 'com.android.support:appcompat-v7:25.3.1'
|
||||||
compile 'com.android.support:cardview-v7:25.2.0'
|
compile 'com.android.support:cardview-v7:25.3.1'
|
||||||
compile 'com.android.support:recyclerview-v7:25.2.0'
|
compile 'com.android.support:recyclerview-v7:25.3.1'
|
||||||
compile 'com.android.support:support-v4:25.2.0'
|
compile 'com.android.support:support-v4:25.3.1'
|
||||||
compile 'com.android.support:design:25.2.0'
|
compile 'com.android.support:design:25.3.1'
|
||||||
compile 'com.github.tony19:logback-android-classic:1.1.1-4'
|
compile 'com.github.tony19:logback-android-classic:1.1.1-4'
|
||||||
compile 'org.slf4j:slf4j-api:1.7.7'
|
compile 'org.slf4j:slf4j-api:1.7.7'
|
||||||
compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
|
compile 'com.github.PhilJay:MPAndroidChart:v3.0.1'
|
||||||
|
@ -76,7 +76,6 @@ dependencies {
|
||||||
compile 'de.cketti.library.changelog:ckchangelog:1.2.2'
|
compile 'de.cketti.library.changelog:ckchangelog:1.2.2'
|
||||||
compile 'net.e175.klaus:solarpositioning:0.0.9'
|
compile 'net.e175.klaus:solarpositioning:0.0.9'
|
||||||
compile 'com.github.freeyourgadget:greendao:1998d7cd2d21f662c6044f6ccf3b3a251bbad341'
|
compile 'com.github.freeyourgadget:greendao:1998d7cd2d21f662c6044f6ccf3b3a251bbad341'
|
||||||
compile 'com.github.woxthebox:draglistview:1.2.9'
|
|
||||||
compile 'org.apache.commons:commons-lang3:3.4'
|
compile 'org.apache.commons:commons-lang3:3.4'
|
||||||
|
|
||||||
// compile project(":DaoCore")
|
// compile project(":DaoCore")
|
||||||
|
|
|
@ -27,7 +27,8 @@ import android.os.Bundle;
|
||||||
import android.support.v4.app.Fragment;
|
import android.support.v4.app.Fragment;
|
||||||
import android.support.v4.content.LocalBroadcastManager;
|
import android.support.v4.content.LocalBroadcastManager;
|
||||||
import android.support.v7.widget.LinearLayoutManager;
|
import android.support.v7.widget.LinearLayoutManager;
|
||||||
import android.view.HapticFeedbackConstants;
|
import android.support.v7.widget.RecyclerView;
|
||||||
|
import android.support.v7.widget.helper.ItemTouchHelper;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
import android.view.Menu;
|
import android.view.Menu;
|
||||||
import android.view.MenuItem;
|
import android.view.MenuItem;
|
||||||
|
@ -35,8 +36,6 @@ import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.PopupMenu;
|
import android.widget.PopupMenu;
|
||||||
|
|
||||||
import com.woxthebox.draglistview.DragListView;
|
|
||||||
|
|
||||||
import org.json.JSONObject;
|
import org.json.JSONObject;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
@ -64,6 +63,8 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
= "nodomain.freeyourgadget.gadgetbridge.appmanager.action.refresh_applist";
|
= "nodomain.freeyourgadget.gadgetbridge.appmanager.action.refresh_applist";
|
||||||
private static final Logger LOG = LoggerFactory.getLogger(AbstractAppManagerFragment.class);
|
private static final Logger LOG = LoggerFactory.getLogger(AbstractAppManagerFragment.class);
|
||||||
|
|
||||||
|
private ItemTouchHelper appManagementTouchHelper;
|
||||||
|
|
||||||
protected abstract List<GBDeviceApp> getSystemAppsInCategory();
|
protected abstract List<GBDeviceApp> getSystemAppsInCategory();
|
||||||
|
|
||||||
protected abstract String getSortFilename();
|
protected abstract String getSortFilename();
|
||||||
|
@ -72,9 +73,13 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
|
|
||||||
protected abstract boolean filterApp(GBDeviceApp gbDeviceApp);
|
protected abstract boolean filterApp(GBDeviceApp gbDeviceApp);
|
||||||
|
|
||||||
|
public void startDragging(RecyclerView.ViewHolder viewHolder) {
|
||||||
|
appManagementTouchHelper.startDrag(viewHolder);
|
||||||
|
}
|
||||||
|
|
||||||
protected void onChangedAppOrder() {
|
protected void onChangedAppOrder() {
|
||||||
List<UUID> uuidList = new ArrayList<>();
|
List<UUID> uuidList = new ArrayList<>();
|
||||||
for (GBDeviceApp gbDeviceApp : mGBDeviceAppAdapter.getItemList()) {
|
for (GBDeviceApp gbDeviceApp : mGBDeviceAppAdapter.getAppList()) {
|
||||||
uuidList.add(gbDeviceApp.getUUID());
|
uuidList.add(gbDeviceApp.getUUID());
|
||||||
}
|
}
|
||||||
AppManagerActivity.rewriteAppOrderFile(getSortFilename(), uuidList);
|
AppManagerActivity.rewriteAppOrderFile(getSortFilename(), uuidList);
|
||||||
|
@ -133,7 +138,6 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
private DragListView appListView;
|
|
||||||
protected final List<GBDeviceApp> appList = new ArrayList<>();
|
protected final List<GBDeviceApp> appList = new ArrayList<>();
|
||||||
private GBDeviceAppAdapter mGBDeviceAppAdapter;
|
private GBDeviceAppAdapter mGBDeviceAppAdapter;
|
||||||
protected GBDevice mGBDevice = null;
|
protected GBDevice mGBDevice = null;
|
||||||
|
@ -237,10 +241,6 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
super.onActivityCreated(savedInstanceState);
|
super.onActivityCreated(savedInstanceState);
|
||||||
mGBDevice = ((AppManagerActivity) getActivity()).getGBDevice();
|
mGBDevice = ((AppManagerActivity) getActivity()).getGBDevice();
|
||||||
|
|
||||||
if (PebbleUtils.getFwMajor(mGBDevice.getFirmwareVersion()) < 3 && !isCacheManager()) {
|
|
||||||
appListView.setDragEnabled(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
IntentFilter filter = new IntentFilter();
|
IntentFilter filter = new IntentFilter();
|
||||||
filter.addAction(ACTION_REFRESH_APPLIST);
|
filter.addAction(ACTION_REFRESH_APPLIST);
|
||||||
|
|
||||||
|
@ -261,31 +261,21 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
|
|
||||||
View rootView = inflater.inflate(R.layout.activity_appmanager, container, false);
|
View rootView = inflater.inflate(R.layout.activity_appmanager, container, false);
|
||||||
|
|
||||||
appListView = (DragListView) (rootView.findViewById(R.id.appListView));
|
RecyclerView appListView = (RecyclerView) (rootView.findViewById(R.id.appListView));
|
||||||
appListView.setLayoutManager(new LinearLayoutManager(getActivity()));
|
appListView.setLayoutManager(new LinearLayoutManager(getActivity()));
|
||||||
mGBDeviceAppAdapter = new GBDeviceAppAdapter(appList, R.layout.item_with_details, R.id.item_image, this.getContext(), this);
|
mGBDeviceAppAdapter = new GBDeviceAppAdapter(appList, R.layout.item_with_details_and_drag_handle, this);
|
||||||
appListView.setAdapter(mGBDeviceAppAdapter, false);
|
appListView.setAdapter(mGBDeviceAppAdapter);
|
||||||
appListView.setCanDragHorizontally(false);
|
|
||||||
appListView.setDragListListener(new DragListView.DragListListener() {
|
|
||||||
@Override
|
|
||||||
public void onItemDragStarted(int position) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
ItemTouchHelper.Callback appItemTouchHelperCallback = new AppItemTouchHelperCallback(mGBDeviceAppAdapter);
|
||||||
public void onItemDragging(int itemPosition, float x, float y) {
|
appManagementTouchHelper = new ItemTouchHelper(appItemTouchHelperCallback);
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
appManagementTouchHelper.attachToRecyclerView(appListView);
|
||||||
public void onItemDragEnded(int fromPosition, int toPosition) {
|
|
||||||
onChangedAppOrder();
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return rootView;
|
return rootView;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected void sendOrderToDevice(String concatFilename) {
|
protected void sendOrderToDevice(String concatFilename) {
|
||||||
ArrayList<UUID> uuids = new ArrayList<>();
|
ArrayList<UUID> uuids = new ArrayList<>();
|
||||||
for (GBDeviceApp gbDeviceApp : mGBDeviceAppAdapter.getItemList()) {
|
for (GBDeviceApp gbDeviceApp : mGBDeviceAppAdapter.getAppList()) {
|
||||||
uuids.add(gbDeviceApp.getUUID());
|
uuids.add(gbDeviceApp.getUUID());
|
||||||
}
|
}
|
||||||
if (concatFilename != null) {
|
if (concatFilename != null) {
|
||||||
|
@ -295,11 +285,11 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
GBApplication.deviceService().onAppReorder(uuids.toArray(new UUID[uuids.size()]));
|
GBApplication.deviceService().onAppReorder(uuids.toArray(new UUID[uuids.size()]));
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean openPopupMenu(View view, int position) {
|
public boolean openPopupMenu(View view, GBDeviceApp deviceApp) {
|
||||||
PopupMenu popupMenu = new PopupMenu(getContext(), view);
|
PopupMenu popupMenu = new PopupMenu(getContext(), view);
|
||||||
popupMenu.getMenuInflater().inflate(R.menu.appmanager_context, popupMenu.getMenu());
|
popupMenu.getMenuInflater().inflate(R.menu.appmanager_context, popupMenu.getMenu());
|
||||||
Menu menu = popupMenu.getMenu();
|
Menu menu = popupMenu.getMenu();
|
||||||
final GBDeviceApp selectedApp = appList.get(position);
|
final GBDeviceApp selectedApp = deviceApp;
|
||||||
|
|
||||||
if (!selectedApp.isInCache()) {
|
if (!selectedApp.isInCache()) {
|
||||||
menu.removeItem(R.id.appmanager_app_reinstall);
|
menu.removeItem(R.id.appmanager_app_reinstall);
|
||||||
|
@ -352,12 +342,11 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
view.performHapticFeedback(HapticFeedbackConstants.LONG_PRESS);
|
|
||||||
popupMenu.show();
|
popupMenu.show();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean onContextItemSelected(MenuItem item, GBDeviceApp selectedApp) {
|
private boolean onContextItemSelected(MenuItem item, GBDeviceApp selectedApp) {
|
||||||
switch (item.getItemId()) {
|
switch (item.getItemId()) {
|
||||||
case R.id.appmanager_app_delete_cache:
|
case R.id.appmanager_app_delete_cache:
|
||||||
String baseName;
|
String baseName;
|
||||||
|
@ -440,4 +429,46 @@ public abstract class AbstractAppManagerFragment extends Fragment {
|
||||||
LocalBroadcastManager.getInstance(getContext()).unregisterReceiver(mReceiver);
|
LocalBroadcastManager.getInstance(getContext()).unregisterReceiver(mReceiver);
|
||||||
super.onDestroy();
|
super.onDestroy();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class AppItemTouchHelperCallback extends ItemTouchHelper.Callback {
|
||||||
|
|
||||||
|
private final GBDeviceAppAdapter gbDeviceAppAdapter;
|
||||||
|
|
||||||
|
public AppItemTouchHelperCallback(GBDeviceAppAdapter gbDeviceAppAdapter) {
|
||||||
|
this.gbDeviceAppAdapter = gbDeviceAppAdapter;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getMovementFlags(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) {
|
||||||
|
//app reordering is not possible on old firmwares
|
||||||
|
if (PebbleUtils.getFwMajor(mGBDevice.getFirmwareVersion()) < 3 && !isCacheManager()) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
//we only support up and down movement and only for moving, not for swiping apps away
|
||||||
|
return makeMovementFlags(ItemTouchHelper.UP | ItemTouchHelper.DOWN, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isLongPressDragEnabled() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onMove(RecyclerView recyclerView, RecyclerView.ViewHolder source, RecyclerView.ViewHolder target) {
|
||||||
|
gbDeviceAppAdapter.onItemMove(source.getAdapterPosition(), target.getAdapterPosition());
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onSwiped(RecyclerView.ViewHolder viewHolder, int direction) {
|
||||||
|
//nothing to do
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void clearView(RecyclerView recyclerView, RecyclerView.ViewHolder viewHolder) {
|
||||||
|
super.clearView(recyclerView, viewHolder);
|
||||||
|
onChangedAppOrder();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,15 +16,15 @@
|
||||||
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
||||||
package nodomain.freeyourgadget.gadgetbridge.adapter;
|
package nodomain.freeyourgadget.gadgetbridge.adapter;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.support.v7.widget.RecyclerView;
|
||||||
import android.view.LayoutInflater;
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.MotionEvent;
|
||||||
import android.view.View;
|
import android.view.View;
|
||||||
import android.view.ViewGroup;
|
import android.view.ViewGroup;
|
||||||
import android.widget.ImageView;
|
import android.widget.ImageView;
|
||||||
import android.widget.TextView;
|
import android.widget.TextView;
|
||||||
|
|
||||||
import com.woxthebox.draglistview.DragItemAdapter;
|
import java.util.Collections;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
|
@ -37,40 +37,41 @@ import nodomain.freeyourgadget.gadgetbridge.impl.GBDeviceApp;
|
||||||
* Adapter for displaying GBDeviceApp instances.
|
* Adapter for displaying GBDeviceApp instances.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class GBDeviceAppAdapter extends DragItemAdapter<GBDeviceApp, GBDeviceAppAdapter.ViewHolder> {
|
public class GBDeviceAppAdapter extends RecyclerView.Adapter<GBDeviceAppAdapter.AppViewHolder> {
|
||||||
|
|
||||||
private final int mLayoutId;
|
private final int mLayoutId;
|
||||||
private final int mGrabHandleId;
|
private final List<GBDeviceApp> appList;
|
||||||
private final Context mContext;
|
|
||||||
private final AbstractAppManagerFragment mParentFragment;
|
private final AbstractAppManagerFragment mParentFragment;
|
||||||
|
|
||||||
public GBDeviceAppAdapter(List<GBDeviceApp> list, int layoutId, int grabHandleId, Context context, AbstractAppManagerFragment parentFragment) {
|
public List<GBDeviceApp> getAppList() {
|
||||||
super(true); // longpress
|
return appList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public GBDeviceAppAdapter(List<GBDeviceApp> list, int layoutId, AbstractAppManagerFragment parentFragment) {
|
||||||
mLayoutId = layoutId;
|
mLayoutId = layoutId;
|
||||||
mGrabHandleId = grabHandleId;
|
appList = list;
|
||||||
mContext = context;
|
|
||||||
mParentFragment = parentFragment;
|
mParentFragment = parentFragment;
|
||||||
setHasStableIds(true);
|
|
||||||
setItemList(list);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public long getItemId(int position) {
|
public long getItemId(int position) {
|
||||||
return mItemList.get(position).getUUID().getLeastSignificantBits();
|
return appList.get(position).getUUID().getLeastSignificantBits();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
public int getItemCount() {
|
||||||
|
return appList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public GBDeviceAppAdapter.AppViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
|
||||||
View view = LayoutInflater.from(parent.getContext()).inflate(mLayoutId, parent, false);
|
View view = LayoutInflater.from(parent.getContext()).inflate(mLayoutId, parent, false);
|
||||||
return new ViewHolder(view);
|
return new AppViewHolder(view);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onBindViewHolder(ViewHolder holder, int position) {
|
public void onBindViewHolder(final AppViewHolder holder, int position) {
|
||||||
super.onBindViewHolder(holder, position);
|
final GBDeviceApp deviceApp = appList.get(position);
|
||||||
GBDeviceApp deviceApp = mItemList.get(position);
|
|
||||||
|
|
||||||
|
|
||||||
holder.mDeviceAppVersionAuthorLabel.setText(GBApplication.getContext().getString(R.string.appversion_by_creator, deviceApp.getVersion(), deviceApp.getCreator()));
|
holder.mDeviceAppVersionAuthorLabel.setText(GBApplication.getContext().getString(R.string.appversion_by_creator, deviceApp.getVersion(), deviceApp.getCreator()));
|
||||||
// FIXME: replace with small icons
|
// FIXME: replace with small icons
|
||||||
|
@ -93,29 +94,51 @@ public class GBDeviceAppAdapter extends DragItemAdapter<GBDeviceApp, GBDeviceApp
|
||||||
default:
|
default:
|
||||||
holder.mDeviceImageView.setImageResource(R.drawable.ic_watchapp);
|
holder.mDeviceImageView.setImageResource(R.drawable.ic_watchapp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
holder.itemView.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View view) {
|
||||||
|
UUID uuid = deviceApp.getUUID();
|
||||||
|
GBApplication.deviceService().onAppStart(uuid, true);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
holder.itemView.setOnLongClickListener(new View.OnLongClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onLongClick(View view) {
|
||||||
|
return mParentFragment.openPopupMenu(view, deviceApp);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
holder.mDragHandle.setOnTouchListener(new View.OnTouchListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onTouch(View view, MotionEvent motionEvent) {
|
||||||
|
mParentFragment.startDragging(holder);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public class ViewHolder extends DragItemAdapter<GBDeviceApp, GBDeviceAppAdapter.ViewHolder>.ViewHolder {
|
public void onItemMove(int from, int to) {
|
||||||
TextView mDeviceAppVersionAuthorLabel;
|
Collections.swap(appList, from, to);
|
||||||
TextView mDeviceAppNameLabel;
|
notifyItemMoved(from, to);
|
||||||
ImageView mDeviceImageView;
|
}
|
||||||
|
|
||||||
public ViewHolder(final View itemView) {
|
public class AppViewHolder extends RecyclerView.ViewHolder {
|
||||||
super(itemView, mGrabHandleId);
|
final TextView mDeviceAppVersionAuthorLabel;
|
||||||
|
final TextView mDeviceAppNameLabel;
|
||||||
|
final ImageView mDeviceImageView;
|
||||||
|
final ImageView mDragHandle;
|
||||||
|
|
||||||
|
AppViewHolder(View itemView) {
|
||||||
|
super(itemView);
|
||||||
mDeviceAppVersionAuthorLabel = (TextView) itemView.findViewById(R.id.item_details);
|
mDeviceAppVersionAuthorLabel = (TextView) itemView.findViewById(R.id.item_details);
|
||||||
mDeviceAppNameLabel = (TextView) itemView.findViewById(R.id.item_name);
|
mDeviceAppNameLabel = (TextView) itemView.findViewById(R.id.item_name);
|
||||||
mDeviceImageView = (ImageView) itemView.findViewById(R.id.item_image);
|
mDeviceImageView = (ImageView) itemView.findViewById(R.id.item_image);
|
||||||
|
mDragHandle = (ImageView) itemView.findViewById(R.id.drag_handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public void onItemClicked(View view) {
|
|
||||||
UUID uuid = mItemList.get(getAdapterPosition()).getUUID();
|
|
||||||
GBApplication.deviceService().onAppStart(uuid, true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public boolean onItemLongClicked(View view) {
|
|
||||||
return mParentFragment.openPopupMenu(view, getAdapterPosition());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="24dp"
|
||||||
|
android:height="24dp"
|
||||||
|
android:viewportWidth="24.0"
|
||||||
|
android:viewportHeight="24.0">
|
||||||
|
<path
|
||||||
|
android:fillColor="#FF000000"
|
||||||
|
android:pathData="M20,9H4v2h16V9zM4,15h16v-2H4v2z" />
|
||||||
|
</vector>
|
|
@ -3,7 +3,8 @@
|
||||||
android:layout_height="match_parent"
|
android:layout_height="match_parent"
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.appmanager.AbstractAppManagerFragment">
|
tools:context="nodomain.freeyourgadget.gadgetbridge.activities.appmanager.AbstractAppManagerFragment">
|
||||||
<com.woxthebox.draglistview.DragListView
|
|
||||||
|
<android.support.v7.widget.RecyclerView
|
||||||
android:id="@+id/appListView"
|
android:id="@+id/appListView"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="fill_parent" />
|
android:layout_height="fill_parent" />
|
||||||
|
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:background="?android:attr/activatedBackgroundIndicator"
|
||||||
|
android:padding="8dp">
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/item_image"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_alignParentStart="true"
|
||||||
|
android:contentDescription="@string/candidate_item_device_image" />
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="fill_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_centerVertical="true"
|
||||||
|
android:layout_toEndOf="@+id/item_image"
|
||||||
|
android:layout_toStartOf="@+id/drag_handle"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:paddingStart="8dp"
|
||||||
|
android:paddingEnd="8dp">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/item_name"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:scrollHorizontally="false"
|
||||||
|
style="@style/Base.TextAppearance.AppCompat.SearchResult.Title"
|
||||||
|
android:text="Item Name"
|
||||||
|
android:maxLines="1" />
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/item_details"
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
style="@style/Base.TextAppearance.AppCompat.SearchResult"
|
||||||
|
android:text="Item Description" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/drag_handle"
|
||||||
|
android:layout_width="48dp"
|
||||||
|
android:layout_height="48dp"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:contentDescription="drag handle"
|
||||||
|
app:srcCompat="@drawable/ic_drag_handle_black_24dp" />
|
||||||
|
|
||||||
|
</RelativeLayout>
|
Loading…
Reference in New Issue