登录
首页 » Android » Android su 源代码

Android su 源代码

于 2023-05-24 发布 文件大小:7.12 kB
0 108
下载积分: 2 下载次数: 1

代码说明:

Android下的 su 源代码结合superuser使用代码中su之后就相当于切换到root账户了供有兴趣的朋友参看

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • triochi-QtAdb-c5fff37
    qt UI 操作adb 控制android(the qt UI operation adb control android)
    2012-06-09 16:25:04下载
    积分:1
  • 人脸检测
    在安卓系统中实现此程序检测人脸图片中 ; 这是一个简单的代码与 android 平台。
    2022-05-24 03:40:04下载
    积分:1
  • Android remote
    Android 远程输入 遥控 Android 远程输入 遥控Android 远程输入 遥控Android 远程输入 遥控Android 远程输入 遥控Android 远程输入 遥控Android 远程输入 遥控
    2022-03-22 07:29:42下载
    积分:1
  • 仿支付宝账单列表
     android 仿支付宝账单列表 整体上看RecyclerView架构,提供了一种插拔式的体验,高度的解耦,异常的灵活,通过设置它提供的不同LayoutManager,ItemDecoration , ItemAnimator实现令人瞠目的效果 
    2022-05-25 13:42:26下载
    积分:1
  • AutoRingProjectxx_zz_src
    I created this app to simulate the ring behavior of the Motorola RAZR which would switch to loud when charging and return to vibrate-only when disconnected (no manual adjustment needed). This app also allows the reverse scenario (silent when connected otherwise ring). This tutorial assumes you already have the Eclipse environment up and running. If you are new to Eclipse and Android development, I recommend going through the temperature converter tutorial which can be found here.
    2012-06-20 10:51:20下载
    积分:1
  • Run
    android 跑步机 而为一天就要尽快离开颗粒(android treadmill, for the day will soon leave the particles)
    2013-06-13 16:09:39下载
    积分:1
  • CertPathValidator
    Cert Path Validator Source Code for Andriod.
    2013-12-06 12:14:16下载
    积分:1
  • moshoutafang2
    在电脑上玩过魔兽塔防游戏的,一直会记得当年这款游戏的火爆程度。现在,在安卓盛行的今天,我们也终于得到了android手机版的魔兽塔防游戏源码,这对于android初中级游戏开发者来说,是难得的参考资料,里面运用到了很多Android方方面面的技术,精彩不容错过(Played Warcraft tower defense games on the computer, always will remember the popular level then the game. Now, in Andrews prevalent today, we finally got android mobile version of Warcraft tower defense game source code, which for android middle-class game developers, is a rare reference, which applied to a lot of technical aspects of Android, wonderful Do not miss)
    2014-04-18 08:22:47下载
    积分:1
  • android 播放网络MP3 音乐播放
    简单的基本功能,实测可行。 核心代码:package com.sharpandroid.music.activity;import java.io.IOException;import android.app.Activity;import android.os.Bundle;import android.util.Log;import android.view.View;import android.widget.Button;import android.widget.ImageButton;import android.widget.SeekBar;import android.widget.TextView;import com.sharpandroid.music.R;import com.sharpandroid.music.StreamingMediaPlayer;public class MediaPlayer extends Activity { private Button streamButton; private ImageButton playButton; private boolean isPlaying; private TextView playTime; private StreamingMediaPlayer audioStreamer; @Override public void onCreate(Bundle icicle) { super.onCreate(icicle); setContentView(R.layout.main); initControls(); } private void initControls() { playTime=(TextView) findViewById(R.id.playTime); streamButton = (Button) findViewById(R.id.button_stream); streamButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { startStreamingAudio(); }}); playButton = (ImageButton) findViewById(R.id.button_play); playButton.setEnabled(false); playButton.setOnClickListener(new View.OnClickListener() { public void onClick(View view) { if (audioStreamer.getMediaPlayer().isPlaying()) { audioStreamer.getMediaPlayer().pause(); playButton.setImageResource(R.drawable.button_play); } else { audioStreamer.getMediaPlayer().start(); audioStreamer.startPlayProgressUpdater(); playButton.setImageResource(R.drawable.button_pause); } isPlaying = !isPlaying; }}); } private void startStreamingAudio() { try { final SeekBar progressBar = (SeekBar) findViewById(R.id.progress_bar); if ( audioStreamer != null) { audioStreamer.interrupt(); } audioStreamer = new StreamingMediaPlayer(this, playButton, streamButton, progressBar,playTime); audioStreamer.startStreaming("http://192.168.64.1/xa.mp3",5208, 216); streamButton.setEnabled(false); } catch (IOException e) { Log.e(getClass().getName(), "读取音乐出错!", e); } }}
    2014-05-26下载
    积分:1
  • CityWeather
    说明:  android天气预报app,应用webservice实现(Weather android app, application webservice implementation)
    2011-04-12 17:08:36下载
    积分:1
  • 696518资源总数
  • 106174会员总数
  • 31今日下载