編輯:關於Android編程
本文實例講述了Android編程開發之EditText實現輸入QQ表情圖像的方法。分享給大家供大家參考,具體如下:
實現效果如下:
將QQ表情圖像放到res下的drawable-hdpi文件夾下:
布局文件:
<EditText android:id="@+id/edittext" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="10dp" android:inputType="text"> </EditText> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="@+id/edittext" android:layout_alignRight="@+id/edittext" android:layout_below="@+id/edittext" android:layout_marginTop="38dp" android:text="添加QQ表情" />
MainActivity.java:
package com.example.edittext1; import java.lang.reflect.Field; import java.util.Random; import android.app.Activity; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.os.Bundle; import android.text.Spannable; import android.text.SpannableString; import android.text.style.ImageSpan; import android.view.Menu; import android.view.View; import android.widget.Button; import android.widget.EditText; public class MainActivity extends Activity { //聲明控件對象 private EditText editText; private Button button; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); editText=(EditText) findViewById(R.id.edittext); button=(Button) findViewById(R.id.button1); //為按鈕注冊點擊事件 button.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { //產生隨機數 隨機數是從0開始,所以要加1,這樣就會產生1到9的隨機數 int randomId=1+new Random().nextInt(9); try { //獲取表情圖片文件名 Field field=R.drawable.class.getDeclaredField("face"+randomId); int resourceId = Integer.parseInt(field.get(null).toString()); // 在android中要顯示圖片信息,必須使用Bitmap位圖的對象來裝載 Bitmap bitmap = BitmapFactory.decodeResource(getResources(), resourceId); //要讓圖片替代指定的文字就要用ImageSpan ImageSpan imageSpan = new ImageSpan(MainActivity.this, bitmap); SpannableString spannableString = new SpannableString("face");//face就是圖片的前綴名 spannableString.setSpan(imageSpan, 0, 4,Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); editText.append(spannableString); } catch ( Exception e) { } } }); } @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.main, menu); return true; } }
希望本文所述對大家Android程序設計有所幫助。
這是從Philippe Breault的系列文章《Android Studio Tips Of the Day》中提取出來的自認為精華的部分。這些技巧在實際應用中能夠非常
布局文件復制代碼 代碼如下:<RelativeLayout xmlns:android=http://schemas.android.com/apk/res/and
每天看郭神的公眾號文章已經成了我的一個習慣,前段時間看到一篇文章,ActivityThread的main()方法究竟做了什麼工作?main方法代碼並不長,但行行珠玑。我也
Statement:This archive is created by William Yi and it’s all the harvests which
上一篇把簡單的一些概念理一理,還畫了個圈,那這一篇講一下圖像遮蓋&ldq