-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
591303e
commit 0a3767f
Showing
639 changed files
with
494 additions
and
45,365 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file renamed
BIN
+32.5 MB
...B/build/outputs/aar/dJISDKLIB-release.aar → ...d-uilib-release/android-uilib-release.aar
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
configurations.maybeCreate("default") | ||
artifacts.add("default", file('android-uilib-release.aar')) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
app/src/main/java/zkrtdrone/zkrt/com/view/fragment/DroneFragment.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
package zkrtdrone.zkrt.com.view.fragment; | ||
|
||
import android.os.Bundle; | ||
import android.view.View; | ||
import android.widget.ImageView; | ||
|
||
import butterknife.Bind; | ||
import butterknife.OnClick; | ||
import zkrtdrone.zkrt.com.R; | ||
import zkrtdrone.zkrt.com.jackmvvm.mvvm.core.AbsFragment; | ||
import zkrtdrone.zkrt.com.jackmvvm.util.GeneralUtils; | ||
|
||
/** | ||
* Created by jack_xie on 17-5-8. | ||
*/ | ||
|
||
public class DroneFragment extends AbsFragment{ | ||
@Bind(R.id.img_drone_takeoff) ImageView img_drone_takeoff; | ||
@Bind(R.id.img_drone_land) ImageView img_drone_land; | ||
@Bind(R.id.img_drone_gohome) ImageView img_drone_gohome; | ||
@Bind(R.id.img_drone_hover) ImageView img_drone_hover; | ||
@Bind(R.id.img_drone_waypoint) ImageView img_drone_waypoint; | ||
|
||
@Override | ||
protected void init(Bundle savedInstanceState) { | ||
|
||
} | ||
|
||
@Override | ||
protected int setLayoutId() { | ||
return R.layout.fragment_drone; | ||
} | ||
|
||
@OnClick(R.id.img_drone_takeoff) | ||
public void imageBtnTakeOffLang(View v){ | ||
if (GeneralUtils.isFastDoubleClick()) return; | ||
} | ||
|
||
@Override | ||
protected void dataCallback(int result, Object obj) { | ||
|
||
} | ||
|
||
@Override | ||
protected void onDelayLoad() { | ||
|
||
} | ||
|
||
} |
Oops, something went wrong.