Back to project page android-training-tutorial.
The source code is released under:
MIT License
If you think the Android project android-training-tutorial listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.flavienlaurent.vdh; // ww w . ja v a 2 s. c o m import android.content.Context; import android.util.AttributeSet; import android.widget.LinearLayout; public class HorizontalDragLayout extends LinearLayout { // public HorizontalDragLayout(Context context, AttributeSet attrs, // int defStyle) { // super(context, attrs, defStyle); // // TODO Auto-generated constructor stub // } public HorizontalDragLayout(Context context, AttributeSet attrs) { super(context, attrs); // TODO Auto-generated constructor stub } public HorizontalDragLayout(Context context) { super(context); // TODO Auto-generated constructor stub } }