Android實現手機壁紙改變的方法_Android

來源:互聯網
上載者:User

本文執行個體講述了Android實現手機壁紙改變的方法。分享給大家供大家參考。具體如下:

main.xml布局檔案:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  android:orientation="vertical" android:layout_width="fill_parent"  android:layout_height="fill_parent">  <Button android:id="@+id/clearWall"    android:layout_width="fill_parent"    android:layout_height="wrap_content"     android:text="恢複預設牆紙" />  <ImageView android:id="@+id/currWall"     android:layout_width="100px"    android:layout_height="150px"    android:layout_gravity="center_horizontal" />  <Button android:id="@+id/getWall"     android:layout_width="fill_parent"    android:layout_height="wrap_content"     android:text="擷取當前牆紙" />  <Gallery android:id="@+id/gallery"    android:layout_width="fill_parent"    android:layout_height="wrap_content" />  <Button android:id="@+id/setWall"     android:layout_width="fill_parent"    android:layout_height="wrap_content"     android:text="設定為當前牆紙" /></LinearLayout>

資訊清單檔:

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"   package="com.ljq.activity"   android:versionCode="1"   android:versionName="1.0">  <application android:icon="@drawable/icon" android:label="@string/app_name">    <activity android:name=".WallActivity"         android:label="@string/app_name">      <intent-filter>        <action android:name="android.intent.action.MAIN" />        <category android:name="android.intent.category.LAUNCHER" />      </intent-filter>    </activity>  </application>  <uses-sdk android:minSdkVersion="7" />  <!-- 設定手機牆紙許可權 -->  <uses-permission android:name="android.permission.SET_WALLPAPER" /></manifest>

WallAdapter自訂配接器:

package com.ljq.activity;import android.content.Context;import android.view.View;import android.view.ViewGroup;import android.widget.BaseAdapter;import android.widget.Gallery;import android.widget.ImageView;public class WallAdapter extends BaseAdapter {  private int[] imgIds = null;  private Context context = null;  public WallAdapter(int[] imgIds, Context context) {    super();    this.imgIds = imgIds;    this.context = context;  }  public int getCount() {    return imgIds.length;  }  public Object getItem(int position) {    //return imgIds[position];    return imgIds[position%imgIds.length];//可迴圈  }  public long getItemId(int position) {    return position;  }  public View getView(int position, View convertView, ViewGroup parent) {    ImageView imageView = new ImageView(context);    imageView.setBackgroundResource(imgIds[position]);// 設定ImageView的背景圖片    imageView.setScaleType(ImageView.ScaleType.CENTER_CROP);    imageView.setLayoutParams(new Gallery.LayoutParams(120, 120));    return imageView;  }}

WallActivity類:

package com.ljq.activity;import java.io.IOException;import java.io.InputStream;import android.app.Activity;import android.os.Bundle;import android.view.View;import android.widget.AdapterView;import android.widget.Button;import android.widget.Gallery;import android.widget.ImageView;import android.widget.AdapterView.OnItemSelectedListener;public class WallActivity extends Activity {  private int[] imgIds={R.drawable.w1, R.drawable.w2, R.drawable.w3, R.drawable.w4};  private int selectIndex=-1;//被選中的圖片在id數組中的索引  private ImageView currWall=null;  private Gallery gallery=null;  private Button clearWall=null;  private Button getWall=null;  private Button setWall=null;  @Override  public void onCreate(Bundle savedInstanceState) {    super.onCreate(savedInstanceState);    setContentView(R.layout.main);    gallery=(Gallery)findViewById(R.id.gallery);    gallery.setAdapter(new WallAdapter(imgIds, WallActivity.this));    gallery.setSpacing(5);    gallery.setOnItemSelectedListener(new OnItemSelectedListener(){      public void onItemSelected(AdapterView<?> parent, View view,          int position, long id) {        selectIndex = position;//記錄被選中的圖片索引      }      public void onNothingSelected(AdapterView<?> parent) {      }    });    currWall=(ImageView)findViewById(R.id.currWall);    clearWall=(Button)findViewById(R.id.clearWall);    getWall=(Button)findViewById(R.id.getWall);    setWall=(Button)findViewById(R.id.setWall);    clearWall.setOnClickListener(listener);    getWall.setOnClickListener(listener);    setWall.setOnClickListener(listener);  }  View.OnClickListener listener=new View.OnClickListener(){    public void onClick(View v) {      Button btn=(Button)v;      switch (btn.getId()) {      case R.id.clearWall://還原手機壁紙        try {          WallActivity.this.clearWallpaper();        } catch (IOException e) {          e.printStackTrace();        }        break;      case R.id.getWall://設定ImageView顯示的內容為當前牆紙        currWall.setBackgroundDrawable(getWallpaper());        break;      case R.id.setWall://設定牆紙        InputStream in=WallActivity.this.getResources().openRawResource(imgIds[selectIndex]);        try {          setWallpaper(in);        } catch (IOException e) {          e.printStackTrace();        }        break;      }    }  };}

運行結果:

希望本文所述對大家的Android程式設計有所協助。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.