On the worksheet, do one of the following: To lock rows, select the row below the row or rows that you want to keep visible when you scroll. To lock columns, select the column to the right of the column...
Month: May 2014
option Menu 和 contextMenu
option Menu 1. create id item:=> privatestaticfinalintMTEM1=Menu.FIRST; privatestaticfinalintMTEM2=Menu.FIRST+1; privatestaticfinalintMTEM3=Menu.FIRST+2; 2. override onCreateOptionsMenu @Override public boolean onCreateOptionsMenu(Menu menu) { // TODO Auto-generated method stub menu.add(0,MTEM1,0,"RED"); menu.add(0,MTEM2,0,"GREEN"); menu.add(0,MTEM3,0,"BLACK"); //return super.onCreateOptionsMenu(menu); returntrue; } 3.overide onOptionsItemSelected public boolean onOptionsItemSelected(MenuItem item) { // TODO Auto-generated method...
android 创建菜单
在ACTIVITY.JAVA 中 package com.example.menutest; import android.app.Activity; import android.app.AlertDialog; import android.app.AlertDialog.Builder; import android.content.DialogInterface; import android.os.Bundle; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class TestMenuActivity extends Activity{ private MenuInflater mi; private Button bt1; @Override...
Anroid OptionMenu 创建
package com.example.uitest2; import android.R.menu; import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.view.MenuItem; public class MainActivity extends Activity { private static final int ITEM1=Menu.FIRST; private static final int ITEM2=Menu.FIRST+1; private static final int ITEM3=Menu.FIRST+2; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState);...
Android Spinner控件的一种使用方法
Android Spinner控件的一种使用方法 发表于1年前(2013-01-07 22:20) 阅读(157) | 评论(0) 0人收藏此文章, 我要收藏 赞0 Spinner控件可以弹出下拉框,选择下拉菜单中的一项。记录一种使用Spinner控件的方法。 1.在main.xml文件中定义Spinner控件 <Spinner android:id="@+id/spinner_01" android:layout_width="wrap_content" android:layout_height="wrap_content" > </Spinner> 2.在MainActivity中,给Spinner控件设置Adapter。 Spinner spinner = (Spinner) findViewById(spinnerId); ArrayAdapter spinneradapter = ArrayAdapter.createFromResource( getApplicationContext(), textArrayResId, R.layout.spinner); spinneradapter.setDropDownViewResource(R.layout.spinner1); spinner.setAdapter(spinneradapter); spinner.setVisibility(View.VISIBLE); ①其中, ArrayAdapter.createFromResource(Context,int,int)这个方法的定义如下: Creates a new ArrayAdapter from external resources. The content...
按键 – Buttons -Anroid UI
Buttons 原文地址:http://docs.eoeandroid.com/guide/topics/ui/controls/button.html 译文地址:http://wiki.eoeandroid.com/Buttons 目录 1 按键 - Buttons 1.1 点击事件的响应 - Responding to Click Events 1.1.1 使用监听器 - Using an OnClickListener 1.2 按钮的样式 - Styling Your Button 1.2.1 无边框按钮 - Borderless button 1.2.2 定制背景 - Custom background 按键 - Buttons 按钮包括文字或者图标,或者两者兼而有之,当用户触摸到按钮时就会触发事件。 取决于你需要按钮有文本、图标或两者兼而有之,您可以以三种方式创建按钮布局: 需要有文字的按钮,使用<Button>类: <Button android:layout_width="wrap_content" android:layout_height="wrap_content"...
Text Fields-文本框
Text Fields-文本框 主任务原文链接:http://docs.eoeandroid.com/guide/topics/ui/controls/text.html 目录 1 Text Fields-文本框 1.1 Specifying the Keyboard Type-指定键盘类型 1.1.1 Controlling other behaviors-控制其他行为 1.2 Specifying Keyboard Actions-指定键盘操作 1.2.1 Responding to action button events-响应按钮事件 1.2.2 Setting a custom action button label-设置文本框标签 1.3 Adding Other Keyboard Flags-添加其他键盘标志 1.4 Providing Auto-complete Suggestions-提供自动完成建议 A text field allows the user...
隐性intent 用法
1. 在 mainActivity.java 中 package androidcour2; import javax.security.auth.PrivateCredentialPermission; import com.example.androidcour2.R; import android.R.anim; import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.view.View.OnClickListener; import android.widget.Button; public class MainActivity extends Activity implements OnClickListener { private Button btn1; @Override protected void onCreate(Bundle savedInstanceState)...
如何在MAC 下删除 Anroid 的 模拟器
cd ~/.android/avd mac:avd xiaoming-mac$ ls test1.avd test2.avd test_3.avd test1.ini test2.ini test_3.ini mac$ rm -rf test1.* mac$ rm -rf test2.* mac:avd xiaoming-mac$ rm -rf test3.*
用Eclipse编写Android程序的代码提示功能
用Eclipse编写Android程序的代码提示功能主要是在java和xml文件中,有时候会失效,默认的提示功能有限。 1)java文件自动提示 Window->Preferences->Java->Editor->Content Assist->Auto Activation 将Auto activation triggers for Java中的默认的一点替换为.abcdefghijklmnopqrstuvwxyz(, 2)xml文件自动提示 Window->Preferences->XML->XML Files->Editor->Content Assist->Auto Activation 将Prompt when these characters are inserted中的<=:替换为<=:.abcdefghijklmnopqrstuvwxyz(, 若以上设置都不管用或者java中点号后没有提示,则可重新建立个Workspace试试。