『壹』 編程貓手機上怎麼操作復制圖片
1、首先打開編程貓手機客戶端編程貓。
2、其次點擊屏幕下方的創作進行編程設計。
3、最後選擇圖片進行復制即可。
『貳』 android編程中怎麼在屏幕上顯示圖片
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/shu" />
說明幾點:
1、項目中資源文件名稱不要用中文,把「樹」改成"shu"
2、啟動一個模擬器或者先連接自己的手機,在DDMS查看,如果有設備說明連接成功了,這時就可以運行這個程序了。
『叄』 Andriod編程中代碼編寫的Activity中的Layout添加圖片
首先在你的helloworld程序對應的layout配置文件(res/layout/下的XXX.xml文件)中添加一個按鈕,具體代碼如下
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android=""
android:id="@+id/layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- 下面這段就是添加的button -->
<Button android:id="@+id/button"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="change background" />
</LinearLayout>
然後在你的繼承Activity類的java類中添加按鈕的事件監聽以及事件處理,代碼如下:
public class 你的helloworld類名 extends Activity implements OnClickListener {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.你的layout文件名);
//下面的代碼用於為按鈕注冊一個監聽
findViewById(R.id.frame_layout).setOnClickListener(new OnClickListener() {
//下面的代碼用於處理按鈕點擊後的事件
public void onClick(View v) {
//下面的代碼用於使背景變色
findViewById(R.id.layout).setBackgroundColor(Color.BLUE);
}
});
}
}