欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

如何给Android中的按钮添加图片功能

时间:2021-02-25 10:37:23|栏目:Android代码|点击:

在layout中建一个my_login.xml文件 代码如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:gravity="center"
    android:background="@drawable/app_icon"
    android:orientation="vertical" >
    <Button
      android:id="@+id/startOrder_btn"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:background="@drawable/apply"
      android:textSize="25sp" >
    </Button>
    <Button
      android:id="@+id/managerOrder_btn"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"
      android:background="@drawable/apply"
      android:textSize="25sp" >
    </Button>
</LinearLayout>
--------------------------------------------------------------------------------------------------------------------------------------------
在drawable-xxhdpi中添加图片
--------------------------------------------------------------------------------------------------------------------------------------------

在Mainactivity中添加如下代码:

LayoutInflater inflater = LayoutInflater.from(mMainActivity);
  View layout=inflater.inflate(R.layout.my_login,null);
  ContextThemeWrapper contextThemeWrapper = new ContextThemeWrapper(MainActivity.this, 2131099656);
  AlertDialog.Builder builder =new AlertDialog.Builder(contextThemeWrapper);
  builder.setView(layout);
  builder.setCancelable(false);
  builder.create().show();
  Button startOrder_btn=(Button) layout.findViewById(R.id.startOrder_btn);
  Button managerOrder_btn=(Button) layout.findViewById(R.id.managerOrder_btn);
  startOrder_btn.setOnClickListener(new OnClickListener(){
  public void onClick(View v) {
  //加上你要实现的代码
  YSDKApi.login(ePlatform.QQ);
  }
  });
  managerOrder_btn.setOnClickListener(new OnClickListener(){
  public void onClick(View v) {//加上你要实现的代码
  YSDKApi.login(ePlatform.WX);
  }
  });

上一篇:Android模仿美团顶部的滑动菜单实例代码

栏    目:Android代码

下一篇:Android实现抽奖转盘实例代码

本文标题:如何给Android中的按钮添加图片功能

本文地址:http://www.codeinn.net/misctech/69676.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有