96编辑器旗下产品
找图
终身
ID:0
到期时间:永久
退出登录
您的位置:首页 > 百科管理 > 详情

登录页背景素材-微信怎么更改启动画面

原创:找图网 2023-07-20 14:11:17
  • 王者荣耀登录背景的素材在哪里可以找到?

  • 你好,这种素材你可以直接在百度里面搜索下载,你如果素描不错建议自己素描哈,有一定的乐趣的,望采纳

  • 微信怎么更改启动画面

  • 微信启动界面怎么改

    大家每天打开微信的时候都会看见微信登录界面的图片,就是一个大大的地球,这张图片虽然看起来非常美,但是时间长了难免会厌烦,然而微信目前也并不打算换掉这张图片,给大家介绍一个方法可以更换微信登录界面的图片,小伙伴赶紧在微信里面换上自己心仪的图片当做登录界面吧。

    1、首先找好你自己喜欢的图片;

    2、用

    美图秀秀

    修改名字和分辨率;

    640*960

    LaunchImage@ 640*960

    LaunchImage-568h@ 640*1138

    LaunchImage-700@ 640*961

    LaunchImage-700-568h@ 639*1136

    LaunchImage-700-Portrait@2x~ 1536*2048

    LaunchImage-800-667h@ 750*1334

    LaunchImage-800-Portrait-736h@ 1242*2208

    LaunchImage-Portrait@2x~ 1536*2048

    按照上面来改名字和分辨率并保存图片,

    文件格式

    都是.png

    微信启动界面怎么改_如何更改微信启动图片

    3、用PP或其它文件管理软件打开/var/mobile/Containers/Bundle/Application/F51EF3D1-27E1-43C5-A508-E2D7037E7623/

    (注意内窜数字每个人可能不一样,可以自己在Application路径找到微信);

    4、导入修改好的文件,直接替换。

    然后重启手机后就可以看到了,其实也可以修改成自己喜欢的图标,改成一样的名字替换。

  • 如何设计android的登录界面

  • 在网上在到一个登录界面感觉挺不错的,给大家分享一下~先看效果图:

    这个Demo除了按钮、小猫和Logo是图片素材之外,其余的UI都是通过代码实现的。

    ?

    一、背景

    背景蓝色渐变,是通过一个xml文件来设置的。代码如下:

    background_

    <?xml version="1.0" encoding="utf-8"?>

    <shape xmlns:andro>

    <gradient

    android:startColor="#FFACDAE5"

    android:endColor="#FF72CAE1"

    android:angle="45"

    />

    </shape>

    startColor是渐变开始的颜色值,endColor是渐变结束的颜色值,angle是渐变的角度。其中#FFACDAE5中,FF是Alpha值,AC是RGB的R值,DA是RGB的G值,E5是RGB的B值,每个值在00~FF取值,即透明度、红、绿、蓝有0~255的分值,像要设置具体的颜色,可以在PS上的取色器上查看设置。

    ?

    ?

    二、圆角白框

    效果图上面的并不是白框,其实框是白色的,只是设置了透明值,也是靠一个xml文件实现的。

    background_login_

    <?xml version="1.0" encoding="UTF-8"?>

    <shape xmlns:andro>

    <solid android:color="#55FFFFFF" />

    <!-- 设置圆角

    注意: bottomRightRadius是左下角而不是右下角  bottomLeftRadius右下角-->

    <corners android:topLeftRadius="10dp" android:topRightRadius="10dp"

    android:bottomRightRadius="10dp" android:bottomLeftRadius="10dp"/>

    </shape>

    ?

    三、界面的布局

    界面的布局挺简单的,就直接贴代码啦~

    <?xml version="1.0" encoding="utf-8"?>

    <LinearLayout

    xmlns:andro

    android:orientation="vertical"

    android:layout_width="fill_parent"

    android:layout_height="fill_parent"

    android:background="@drawable/background_login">

    <!-- padding 内边距   layout_margin 外边距

    android:layout_alignParentTop 布局的位置是否处于顶部 -->

    <RelativeLayout

    android:

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:padding="15dip"

    android:layout_margin="15dip"

    android:background="@drawable/background_login_div_bg" >

    <!-- 账号 -->

    <TextView

    android:

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_alignParentTop="true"

    android:layout_marginTop="5dp"

    android:text="@string/login_label_username"

    />

    <EditText

    android:

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:hint="@string/login_username_hint"

    android:layout_below="@id/login_user_input"

    android:singleLine="true"

    android:inputType="text"/>

    <!-- 密码 text -->

    <TextView

    android:

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_below="@id/username_edit"

    android:layout_marginTop="3dp"

    android:text="@string/login_label_password"

    />

    <EditText

    android:

    android:layout_width="fill_parent"

    android:layout_height="wrap_content"

    android:layout_below="@id/login_password_input"

    android:password="true"

    android:singleLine="true"

    android:inputType="textPassword" />

    <!-- 登录button -->

    <Button

    android:

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_below="@id/password_edit"

    android:layout_alignRight="@id/password_edit"

    android:text="@string/login_label_signin"

    android:background="@drawable/blue_button" />

    </RelativeLayout>

    <RelativeLayout

    android:layout_width="fill_parent"

    android:layout_height="wrap_content" >

    <TextView  android:

    android:text="@string/login_register_link"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_marginLeft="15dp"

    android:textColor="#888"

    android:textColorLink="#FF0066CC" />

    <ImageView android:

    android:src="@drawable/cat"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_alignParentRight="true"

    android:layout_alignParentBottom="true"

    android:layout_marginRight="25dp"

    android:layout_marginLeft="10dp"

    android:layout_marginBottom="25dp" />

    <ImageView android:src="@drawable/logo"

    android:layout_width="wrap_content"

    android:layout_height="wrap_content"

    android:layout_toLeftOf="@id/miniTwitter_logo"

    android:layout_alignBottom="@id/miniTwitter_logo"

    android:paddingBottom="8dp"/>

    </RelativeLayout>

    </LinearLayout>

    最新文章 更多
    最新素材 更多
    公司介绍 网站地图 图片资讯
    Copyright © 2010-2022 山东找图网络科技有限公司  鲁ICP备18007836号-3  邮箱:15653358549@163.com