Skip to content

Commit a95bb69

Browse files
committedJul 23, 2017
增加DragViewHelper
1 parent 7e8ec0d commit a95bb69

28 files changed

+738
-3837
lines changed
 

‎drag/.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

‎drag/README.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# ViewDragHelper
2+
3+
## 侧滑菜单实现
4+
5+
> 主要是 'ViewDragHelper' 的使用,使用侧滑菜单做实践

‎drag/build.gradle

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
apply plugin: 'com.android.application'
2+
3+
android {
4+
compileSdkVersion 25
5+
buildToolsVersion "25.0.2"
6+
7+
defaultConfig {
8+
applicationId "com.skymxc.demo.drag"
9+
minSdkVersion 19
10+
targetSdkVersion 25
11+
versionCode 1
12+
versionName "1.0"
13+
14+
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
15+
16+
}
17+
buildTypes {
18+
release {
19+
minifyEnabled false
20+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
21+
}
22+
}
23+
}
24+
25+
dependencies {
26+
compile fileTree(include: ['*.jar'], dir: 'libs')
27+
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
28+
exclude group: 'com.android.support', module: 'support-annotations'
29+
})
30+
compile 'com.android.support:appcompat-v7:25.3.1'
31+
compile 'com.android.support.constraint:constraint-layout:1.0.2'
32+
testCompile 'junit:junit:4.12'
33+
compile 'com.android.support:recyclerview-v7:25.3.1'
34+
}

‎drag/proguard-rules.pro

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in C:\Users\Administrator\AppData\Local\Android\Sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
18+
19+
# Uncomment this to preserve the line number information for
20+
# debugging stack traces.
21+
#-keepattributes SourceFile,LineNumberTable
22+
23+
# If you keep the line number information, uncomment this to
24+
# hide the original source file name.
25+
#-renamesourcefileattribute SourceFile
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
package com.skymxc.demo.drag;
2+
3+
import android.content.Context;
4+
import android.support.test.InstrumentationRegistry;
5+
import android.support.test.runner.AndroidJUnit4;
6+
7+
import org.junit.Test;
8+
import org.junit.runner.RunWith;
9+
10+
import static org.junit.Assert.*;
11+
12+
/**
13+
* Instrumentation test, which will execute on an Android device.
14+
*
15+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
16+
*/
17+
@RunWith(AndroidJUnit4.class)
18+
public class ExampleInstrumentedTest {
19+
@Test
20+
public void useAppContext() throws Exception {
21+
// Context of the app under test.
22+
Context appContext = InstrumentationRegistry.getTargetContext();
23+
24+
assertEquals("com.skymxc.demo.drag", appContext.getPackageName());
25+
}
26+
}

‎drag/src/main/AndroidManifest.xml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.skymxc.demo.drag">
3+
4+
<application android:allowBackup="true" android:icon="@mipmap/ic_launcher"
5+
android:label="@string/app_name" android:roundIcon="@mipmap/ic_launcher_round"
6+
android:supportsRtl="true" android:theme="@style/AppTheme">
7+
<activity android:name=".MainActivity">
8+
<intent-filter>
9+
<action android:name="android.intent.action.MAIN" />
10+
11+
<category android:name="android.intent.category.LAUNCHER" />
12+
</intent-filter>
13+
</activity>
14+
</application>
15+
16+
</manifest>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,164 @@
1+
package com.skymxc.demo.drag;
2+
3+
import android.content.Context;
4+
import android.support.annotation.Nullable;
5+
import android.support.v4.widget.ViewDragHelper;
6+
import android.util.AttributeSet;
7+
import android.util.Log;
8+
import android.view.MotionEvent;
9+
import android.view.View;
10+
import android.widget.RelativeLayout;
11+
12+
/**
13+
* Created by mxc on 2017/7/23.
14+
* description:
15+
*/
16+
17+
public class DragLayout extends RelativeLayout {
18+
19+
private static final String TAG = "SwipeLayout";
20+
21+
private View mContentView;
22+
private int mDragDistance ;
23+
private ViewDragHelper mDragHelper;
24+
public DragLayout(Context context) {
25+
this(context,null);
26+
}
27+
28+
public DragLayout(Context context, @Nullable AttributeSet attrs) {
29+
this(context, attrs,0);
30+
}
31+
32+
public DragLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
33+
super(context, attrs, defStyleAttr);
34+
mDragHelper = ViewDragHelper.create(this,1.0f,new DragHelper());
35+
}
36+
37+
/**
38+
* 加载view完毕后
39+
*/
40+
@Override
41+
protected void onFinishInflate() {
42+
super.onFinishInflate();
43+
//这里写死了,注意
44+
mContentView= getChildAt(0);
45+
}
46+
47+
48+
@Override
49+
public boolean onInterceptTouchEvent(MotionEvent ev) {
50+
//交由 DragHelper 去判断 是否应该拦截该事件
51+
return mDragHelper.shouldInterceptTouchEvent(ev);
52+
}
53+
54+
@Override
55+
public boolean onTouchEvent(MotionEvent event) {
56+
//如果事件被拦截,我们就将事件交由 DragHelper去处理
57+
mDragHelper.processTouchEvent(event);
58+
return true;
59+
}
60+
61+
@Override
62+
public void computeScroll() {
63+
super.computeScroll();
64+
// if (mDragHelper.continueSettling(true)){
65+
// ViewCompat.postInvalidateOnAnimation(this);
66+
// }
67+
}
68+
69+
class DragHelper extends ViewDragHelper.Callback{
70+
71+
/**
72+
* 决定是否捕获此view
73+
* 这里自由决定
74+
* @param child 待捕获的子元素
75+
* @param pointerId
76+
* @return 是否捕获
77+
*/
78+
@Override
79+
public boolean tryCaptureView(View child, int pointerId) {
80+
return child==mContentView;
81+
}
82+
83+
/**
84+
* 允许的拖动范围 水平范围内
85+
* @param child
86+
* @return
87+
*/
88+
// @Override
89+
// public int getViewHorizontalDragRange(View child) {
90+
// Log.e(TAG,"getViewHorizontalDragRange--DragDistance-->"+mDragDistance);
91+
// return mDragDistance;
92+
// }
93+
94+
/**
95+
* 水平 拖动
96+
* @param child 拖动的元素
97+
* @param left 将要去往的位置
98+
* @param dx 拖动了的距离
99+
* @return 新位置
100+
*/
101+
@Override
102+
public int clampViewPositionHorizontal(View child, int left, int dx) {
103+
//限制在容器内
104+
int leftBound = getPaddingLeft();
105+
int rightBound = getWidth() - mContentView.getWidth();
106+
int newLeft = Math.min(Math.max(left,leftBound),rightBound);
107+
return newLeft;
108+
}
109+
110+
/**
111+
* 垂直拖动
112+
* @param child
113+
* @param top
114+
* @param dy
115+
* @return
116+
*/
117+
@Override
118+
public int clampViewPositionVertical(View child, int top, int dy) {
119+
int topBound = getPaddingTop();
120+
int bottomBound = getHeight() - mContentView.getHeight();
121+
int newTop = Math.min(Math.max(top,topBound),bottomBound);
122+
return newTop;
123+
}
124+
125+
@Override
126+
public void onViewDragStateChanged(int state) {
127+
switch (state){
128+
case ViewDragHelper.STATE_IDLE:
129+
Log.e("onViewDragStateChanged","state-->STATE_IDLE"+state);
130+
break;
131+
case ViewDragHelper.STATE_DRAGGING:
132+
Log.e("onViewDragStateChanged","state-->STATE_DRAGGING"+state);
133+
break;
134+
case ViewDragHelper.STATE_SETTLING:
135+
Log.e("onViewDragStateChanged","state-->STATE_SETTLING"+state);
136+
break;
137+
}
138+
}
139+
140+
/**
141+
* 当拖动的view position发生改变时触发
142+
* @param changedView 拖动的view
143+
* @param left 新位置 X轴
144+
* @param top 新位置 Y轴
145+
* @param dx 从上次位置 到这次位置移动的距离 X轴
146+
* @param dy 从上次位置 到这次位置移动的距离 Y轴
147+
*/
148+
@Override
149+
public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {
150+
}
151+
152+
/**
153+
* 停止拖动
154+
* @param releasedChild
155+
* @param xvel x 轴速度 每秒移动的像素值
156+
* @param yvel Y 轴速度 每秒移动的像素值
157+
*/
158+
@Override
159+
public void onViewReleased(View releasedChild, float xvel, float yvel) {
160+
Log.e("onViewReleased","xvel-->"+xvel+";yvel-->"+yvel);
161+
}
162+
}
163+
164+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
package com.skymxc.demo.drag;
2+
3+
import android.os.Bundle;
4+
import android.support.v7.app.AppCompatActivity;
5+
import android.support.v7.widget.DividerItemDecoration;
6+
import android.support.v7.widget.LinearLayoutManager;
7+
import android.support.v7.widget.RecyclerView;
8+
import android.widget.Toast;
9+
10+
public class MainActivity extends AppCompatActivity implements MyAdapter.OnActionListener {
11+
12+
private RecyclerView recyclerView;
13+
14+
@Override
15+
protected void onCreate(Bundle savedInstanceState) {
16+
super.onCreate(savedInstanceState);
17+
setContentView(R.layout.activity_main);
18+
recyclerView = (RecyclerView) findViewById(R.id.recycle);
19+
recyclerView.setLayoutManager(new LinearLayoutManager(this));
20+
recyclerView.addItemDecoration(new DividerItemDecoration(this, DividerItemDecoration.VERTICAL));
21+
MyAdapter adapter = new MyAdapter(this);
22+
adapter.setOnActionListener(this);
23+
recyclerView.setAdapter(adapter);
24+
25+
}
26+
27+
@Override
28+
public void onDelete(String item, int position) {
29+
Toast.makeText(this, "delete->" + item, Toast.LENGTH_SHORT).show();
30+
}
31+
32+
@Override
33+
public void onUpdate(String item, int position) {
34+
35+
Toast.makeText(this, "update->" + item, Toast.LENGTH_SHORT).show();
36+
}
37+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
package com.skymxc.demo.drag;
2+
3+
import android.content.Context;
4+
import android.support.v7.widget.RecyclerView;
5+
import android.view.LayoutInflater;
6+
import android.view.View;
7+
import android.view.ViewGroup;
8+
import android.widget.TextView;
9+
10+
/**
11+
* Created by mxc on 2017/7/23.
12+
* description:
13+
*/
14+
15+
public class MyAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
16+
private String[] items = new String[]{"item1", "item2", "item3", "item4", "item5",
17+
"item6", "item7", "item8", "item9", "item10", "item11",
18+
"item12", "item13", "item14", "item15", "item16"};
19+
20+
private LayoutInflater inflater;
21+
private OnActionListener onActionListener;
22+
23+
public MyAdapter(Context context) {
24+
this.inflater = LayoutInflater.from(context);
25+
}
26+
27+
@Override
28+
public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
29+
return new MyViewHolder(inflater.inflate(R.layout.layout_item, null));
30+
}
31+
32+
@Override
33+
public void onBindViewHolder(RecyclerView.ViewHolder holder, int position) {
34+
if (holder instanceof MyViewHolder) {
35+
MyViewHolder viewHolder = (MyViewHolder) holder;
36+
String item = items[position];
37+
viewHolder.tvContent.setText(item);
38+
viewHolder.actionUpdate.setTag(position);
39+
viewHolder.actionDel.setTag(position);
40+
viewHolder.actionDel.setOnClickListener(onClickListener);
41+
viewHolder.tvContent.setTag(position);
42+
viewHolder.tvContent.setOnClickListener(onClickListener);
43+
viewHolder.actionUpdate.setOnClickListener(onClickListener);
44+
}
45+
}
46+
47+
@Override
48+
public int getItemCount() {
49+
return items.length;
50+
}
51+
52+
private View.OnClickListener onClickListener = new View.OnClickListener() {
53+
@Override
54+
public void onClick(View v) {
55+
int position = (int) v.getTag();
56+
String item = items[position];
57+
switch (v.getId()) {
58+
case R.id.action_delete:
59+
onActionListener.onDelete(item, position);
60+
break;
61+
case R.id.action_update:
62+
onActionListener.onUpdate(item, position);
63+
break;
64+
case R.id.content:
65+
onActionListener.onClick(item, position);
66+
break;
67+
}
68+
}
69+
};
70+
71+
public void setOnActionListener(OnActionListener onActionListener) {
72+
this.onActionListener = onActionListener;
73+
}
74+
75+
static class MyViewHolder extends RecyclerView.ViewHolder {
76+
77+
TextView tvContent;
78+
TextView actionDel;
79+
TextView actionUpdate;
80+
81+
public MyViewHolder(View itemView) {
82+
super(itemView);
83+
ViewGroup.LayoutParams layoutParams = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
84+
itemView.setLayoutParams(layoutParams);
85+
tvContent = (TextView) itemView.findViewById(R.id.content);
86+
actionDel = (TextView) itemView.findViewById(R.id.action_delete);
87+
actionUpdate = (TextView) itemView.findViewById(R.id.action_update);
88+
}
89+
}
90+
91+
public interface OnActionListener {
92+
void onDelete(String item, int position);
93+
94+
void onUpdate(String item, int position);
95+
96+
void onClick(String item, int position);
97+
}
98+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,154 @@
1+
package com.skymxc.demo.drag;
2+
3+
import android.content.Context;
4+
import android.support.annotation.Nullable;
5+
import android.support.v4.view.ViewCompat;
6+
import android.support.v4.widget.ViewDragHelper;
7+
import android.util.AttributeSet;
8+
import android.util.Log;
9+
import android.view.MotionEvent;
10+
import android.view.View;
11+
import android.widget.LinearLayout;
12+
13+
/**
14+
* Created by mxc on 2017/7/23.
15+
* description:
16+
*/
17+
18+
public class SwipeItemLayout extends LinearLayout {
19+
private final double AUTO_OPEN_SPEED_LIMIT = 500.0;
20+
private View mActionView;
21+
private View mContentView;
22+
private int mDragDistance;
23+
private ViewDragHelper mDragHelper;
24+
private boolean isOpen;
25+
26+
27+
public SwipeItemLayout(Context context) {
28+
this(context, null);
29+
}
30+
31+
public SwipeItemLayout(Context context, @Nullable AttributeSet attrs) {
32+
this(context, attrs, 0);
33+
}
34+
35+
public SwipeItemLayout(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
36+
super(context, attrs, defStyleAttr);
37+
mDragHelper = ViewDragHelper.create(this, 1.0f, new SwipeItemDragHelper());
38+
}
39+
40+
@Override
41+
protected void onFinishInflate() {
42+
super.onFinishInflate();
43+
mContentView = getChildAt(0);
44+
mActionView = getChildAt(1);
45+
}
46+
47+
@Override
48+
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
49+
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
50+
mDragDistance = mActionView.getMeasuredWidth();
51+
}
52+
53+
@Override
54+
public boolean onInterceptTouchEvent(MotionEvent ev) {
55+
return mDragHelper.shouldInterceptTouchEvent(ev);
56+
}
57+
58+
@Override
59+
public boolean onTouchEvent(MotionEvent event) {
60+
mDragHelper.processTouchEvent(event);
61+
return true;
62+
}
63+
64+
/**
65+
* 因为要在 DragHelper的中使用动画
66+
*/
67+
@Override
68+
public void computeScroll() {
69+
super.computeScroll();
70+
if (mDragHelper.continueSettling(true)) {
71+
ViewCompat.postInvalidateOnAnimation(this);
72+
}
73+
}
74+
75+
class SwipeItemDragHelper extends ViewDragHelper.Callback {
76+
77+
private int dragDx;
78+
79+
@Override
80+
public boolean tryCaptureView(View child, int pointerId) {
81+
return child == mContentView || child == mActionView;
82+
}
83+
84+
@Override
85+
public int clampViewPositionHorizontal(View child, int left, int dx) {
86+
dragDx+=dx;
87+
if (child == mContentView) {
88+
/**
89+
* 这个位置 的范围应该是在 0和 -dragDistance之间;最大是0;最小是 -dragDistance
90+
*/
91+
int leftBound = getPaddingLeft();
92+
int minLeft = -leftBound - mDragDistance;
93+
int newLeft = Math.min(Math.max(minLeft, left), 0);
94+
return newLeft;
95+
} else {
96+
/**
97+
* 这个view的位置范围应该是在 父布局的宽度-actionView的宽和父布局的宽度之间;
98+
*/
99+
int leftBound = getPaddingLeft();
100+
int minLeft = getWidth() - leftBound - mActionView.getWidth();
101+
int newLeft = Math.min(Math.max(minLeft, left), getWidth());
102+
return newLeft;
103+
}
104+
}
105+
106+
@Override
107+
public void onViewPositionChanged(View changedView, int left, int top, int dx, int dy) {
108+
//同时移动
109+
if (changedView == mContentView) {
110+
mActionView.offsetLeftAndRight(dx);
111+
} else {
112+
mContentView.offsetLeftAndRight(dx);
113+
}
114+
invalidate();
115+
// Log.e("onViewPosition", "dx-->" + dx);
116+
}
117+
118+
@Override
119+
public void onViewReleased(View releasedChild, float xvel, float yvel) {
120+
/**
121+
* 这里的速度 是这样计算的 每秒的拖动的像素 值
122+
* 速度判断
123+
* 如果向→滑动 速度肯定是 正数;
124+
* 如果向←滑动 速度肯定是 负数
125+
* 如果 拖动距离 是 actionView的 ¼ 就允许打开或关闭
126+
*/
127+
//根据速度决定是否打开
128+
boolean settleToOpen = false;
129+
float realVel = Math.abs(xvel);
130+
int realDragX = Math.abs(dragDx);
131+
if (realVel > AUTO_OPEN_SPEED_LIMIT) { //根据速度判断
132+
if (xvel > 0) { //右滑
133+
settleToOpen = false;
134+
} else { //左滑
135+
settleToOpen = true;
136+
}
137+
}else if(realDragX> mDragDistance/4){ //根据拖动距离判断
138+
if (dragDx>0){ //右滑
139+
settleToOpen = false;
140+
}else{
141+
settleToOpen = true;
142+
}
143+
}
144+
isOpen = settleToOpen;
145+
int settleDestX = isOpen ? -mDragDistance : 0;
146+
Log.e("onViewReleased", "settleToOpen->" + settleToOpen + ";destX->" + settleDestX + ";xvel->" + xvel + ";dragDx-->" + dragDx);
147+
mDragHelper.smoothSlideViewTo(mContentView, settleDestX, 0);
148+
ViewCompat.postInvalidateOnAnimation(SwipeItemLayout.this);
149+
dragDx = 0;
150+
}
151+
}
152+
153+
154+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package com.skymxc.demo.drag;
2+
3+
import android.content.Context;
4+
import android.support.annotation.Nullable;
5+
import android.support.v7.widget.RecyclerView;
6+
import android.util.AttributeSet;
7+
import android.view.MotionEvent;
8+
9+
/**
10+
* Created by mxc on 2017/7/23.
11+
* description:
12+
*/
13+
14+
public class SwipeRecyclerView extends RecyclerView {
15+
public SwipeRecyclerView(Context context) {
16+
super(context);
17+
}
18+
19+
public SwipeRecyclerView(Context context, @Nullable AttributeSet attrs) {
20+
super(context, attrs);
21+
}
22+
23+
public SwipeRecyclerView(Context context, @Nullable AttributeSet attrs, int defStyle) {
24+
super(context, attrs, defStyle);
25+
}
26+
27+
@Override
28+
public boolean onTouchEvent(MotionEvent e) {
29+
return super.onTouchEvent(e);
30+
}
31+
}
+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<LinearLayout
3+
xmlns:android="http://schemas.android.com/apk/res/android"
4+
xmlns:app="http://schemas.android.com/apk/res-auto"
5+
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
6+
android:layout_height="match_parent" tools:context="com.skymxc.demo.drag.MainActivity">
7+
8+
9+
<!--<com.skymxc.demo.drag.DragLayout-->
10+
<!--android:layout_width="match_parent"-->
11+
<!--android:layout_height="match_parent">-->
12+
13+
<!--<TextView-->
14+
<!--android:layout_width="60dp"-->
15+
<!--android:layout_height="60dp"-->
16+
<!--android:gravity="center"-->
17+
<!--android:layout_centerInParent="true"-->
18+
<!--android:background="@android:color/darker_gray"-->
19+
<!--android:text="content"/>-->
20+
21+
<!--</com.skymxc.demo.drag.DragLayout>-->
22+
23+
<!--<com.skymxc.demo.drag.SwipeLayout-->
24+
<!--android:layout_width="match_parent"-->
25+
<!--android:layout_height="match_parent"-->
26+
<!--android:orientation="horizontal">-->
27+
28+
<!--<LinearLayout-->
29+
<!--android:layout_width="match_parent"-->
30+
<!--android:layout_height="60dp"-->
31+
<!--android:orientation="horizontal"-->
32+
<!--android:background="@android:color/darker_gray">-->
33+
34+
<!--</LinearLayout>-->
35+
36+
<!--<LinearLayout-->
37+
<!--android:layout_width="100dp"-->
38+
<!--android:layout_height="60dp"-->
39+
<!--android:background="@android:color/holo_red_light"></LinearLayout>-->
40+
41+
<!--</com.skymxc.demo.drag.SwipeLayout>-->
42+
43+
44+
<android.support.v7.widget.RecyclerView
45+
android:id="@+id/recycle"
46+
android:layout_width="match_parent"
47+
android:layout_height="match_parent"></android.support.v7.widget.RecyclerView>
48+
49+
50+
</LinearLayout>
+60
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<com.skymxc.demo.drag.SwipeItemLayout xmlns:android="http://schemas.android.com/apk/res/android"
3+
android:orientation="horizontal" android:layout_width="match_parent"
4+
android:layout_height="match_parent">
5+
6+
<LinearLayout
7+
android:layout_width="match_parent"
8+
android:layout_height="60dp"
9+
android:orientation="horizontal"
10+
android:paddingLeft="10dp"
11+
android:background="@android:color/darker_gray">
12+
13+
<ImageView
14+
android:layout_width="30dp"
15+
android:layout_height="30dp"
16+
android:adjustViewBounds="true"
17+
android:layout_gravity="center_vertical"
18+
android:src="@mipmap/ic_launcher"/>
19+
20+
<TextView
21+
android:id="@+id/content"
22+
android:layout_width="wrap_content"
23+
android:layout_height="wrap_content"
24+
android:layout_gravity="center_vertical"
25+
android:layout_marginLeft="10dp"
26+
android:text="content"
27+
android:textColor="@android:color/white"
28+
android:clickable="true"/>
29+
</LinearLayout>
30+
31+
<LinearLayout
32+
android:layout_width="200dp"
33+
android:layout_height="60dp"
34+
android:orientation="horizontal">
35+
36+
<TextView
37+
android:id="@+id/action_delete"
38+
android:layout_width="0dp"
39+
android:layout_weight="1"
40+
android:background="@android:color/holo_red_light"
41+
android:layout_height="match_parent"
42+
android:text="删除"
43+
android:textColor="@android:color/white"
44+
android:gravity="center"
45+
android:clickable="true"/>
46+
47+
<TextView
48+
android:id="@+id/action_update"
49+
android:layout_width="0dp"
50+
android:layout_weight="1"
51+
android:background="@android:color/holo_orange_dark"
52+
android:layout_height="match_parent"
53+
android:text="修改"
54+
android:textColor="@android:color/white"
55+
android:gravity="center"
56+
android:clickable="true"/>
57+
58+
</LinearLayout>
59+
60+
</com.skymxc.demo.drag.SwipeItemLayout>
3.34 KB
Loading
Loading
2.15 KB
Loading
Loading
4.73 KB
Loading
Loading
7.54 KB
Loading
Loading
10.2 KB
Loading
Loading

‎drag/src/main/res/values/colors.xml

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
<color name="colorPrimary">#3F51B5</color>
4+
<color name="colorPrimaryDark">#303F9F</color>
5+
<color name="colorAccent">#FF4081</color>
6+
</resources>

‎drag/src/main/res/values/strings.xml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<resources>
2+
<string name="app_name">drag</string>
3+
</resources>

‎drag/src/main/res/values/styles.xml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<resources>
2+
3+
<!-- Base application theme. -->
4+
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
5+
<!-- Customize your theme here. -->
6+
<item name="colorPrimary">@color/colorPrimary</item>
7+
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
8+
<item name="colorAccent">@color/colorAccent</item>
9+
</style>
10+
11+
</resources>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package com.skymxc.demo.drag;
2+
3+
import org.junit.Test;
4+
5+
import static org.junit.Assert.*;
6+
7+
/**
8+
* Example local unit test, which will execute on the development machine (host).
9+
*
10+
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
11+
*/
12+
public class ExampleUnitTest {
13+
@Test
14+
public void addition_isCorrect() throws Exception {
15+
assertEquals(4, 2 + 2);
16+
}
17+
}

‎projectFilesBackup/.idea/workspace.xml

-3,837
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.