美文网首页
反编译--更改布局文件的文字

反编译--更改布局文件的文字

作者: 猪_队友 | 来源:发表于2018-06-03 08:49 被阅读16次

    我们自己构造一个app,布局就一个TextView,java代码也不用写

    <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context="ssy.com.fapplication.Main2Activity">
    <TextView
        android:gravity="center"
        android:textSize="30dp"
        android:text="我的故事"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
    </android.support.constraint.ConstraintLayout>
    
    

    我们把应用打包

    image.png
    然后用apktool工具去操作
    apktool d -f
    D:\Technology\Technology\FanBianYi\apktool\apktool\app-release.apk -o out
    这样我们就把apk变成反编译文件
    image.png
    打开res里面layout布局文件夹,找到相应布局文件,直接打开更改文字
    image.png
    改完之后,我们要把文件夹打包成app。
    apktool b out -o debug.apk
    这样我们就得到未签名的apk了。
    最后把apk打包。
    signapk debug.apk
    最后生成sign.apk
    image.png

    我们需要的工具有apktool 和 signapk ,直接百度下载最近版本的就好。

    相关文章

      网友评论

          本文标题:反编译--更改布局文件的文字

          本文链接:https://www.haomeiwen.com/subject/vyodsftx.html