翻译文档
文章平均质量分 77
吴朗
这个作者很懒,什么都没留下…
展开
-
Media Playback//媒体播放
Media Playback//媒体播放翻译 2013-12-03 18:37:10 · 1607 阅读 · 0 评论 -
ListView_SimpleAdapter
一:java代码.MainActivity:package com.action;import android.app.Activity;import android.app.AlertDialog;import android.app.AlertDialog.Builder;import android.content.DialogInterface;impo原创 2013-08-15 15:18:11 · 1074 阅读 · 0 评论 -
Seek Bars and Sliders//seek bars和滑块(完)
Seek Bars and SlidersInteractive sliders make it possible to select a value from a continuous or discrete range of values by moving the slider thumb. The smallest value is to the left, the large翻译 2013-12-03 09:05:02 · 1036 阅读 · 0 评论 -
WindowManager.LayoutParams//android.view
public static class WindowManager.LayoutParams extends ViewGroup.LayoutParams ements Parcelable翻译 2013-12-07 11:15:03 · 929 阅读 · 0 评论 -
android.view.Window
android.view.Window Class Overview Abstract base class for a top-level window look and behavior policy//策略,政策. An instance of this class should be used as the top-level view added t翻译 2013-11-03 18:37:33 · 935 阅读 · 0 评论 -
android.widget.Gallery
android.widget.Gallery java.lang.Object--->android.view.View--->android.view.ViewGroup--->android.widget.AdapterViewandroid.widget.Adapter>----->android.widget.AbsSpinner---->android.widget.Galler翻译 2013-11-03 15:48:30 · 1130 阅读 · 0 评论 -
Themes//布景主题,桌面主题(完)
Themes//布景主题,桌面主题Themes are Android's mechanism for applying a consistent style to an app or activity. The style specifies the visual properties of the elements that make up your user interface, s翻译 2013-11-29 13:41:54 · 1198 阅读 · 0 评论 -
Creative Vision//视觉创意(完)
Creative Vision//视觉创意//Design ---->Get Started--->Creative VersionWe focused the design of Android around three overarching goals, which apply to our core apps as well as the system at large. A翻译 2013-12-01 16:19:04 · 1351 阅读 · 0 评论 -
SimpleOnGestureListener//简单手势监听
SimpleOnGestureListener//简单手势监听方法:(1)public boolean onFling (MotionEvent e1, MotionEvent e2, float velocityX, float velocityY)Notified of a fling event when it occurs with the initial on dow翻译 2013-12-09 14:32:29 · 2629 阅读 · 0 评论 -
Gestures//手势
Gestures//手势Gestures allow users to interact with your app by manipulating the screen objects you provide. The following table shows the core gesture set that is supported in Android.//手势允许用户通翻译 2013-12-07 18:11:22 · 1402 阅读 · 0 评论 -
Styles and Themes//风格和主题
Styles and Themes//风格和主题A style is a collection of properties that specify the look and format for a View or window. A style can specify properties such as height, padding, font color, font size翻译 2013-11-29 15:28:12 · 1230 阅读 · 0 评论 -
RelativeLayout.LayoutParams
RelativeLayout.LayoutParams继承关系:java.lang.Object --->android.view.ViewGroup.LayoutParams--->android.view.ViewGroup.MarginLayoutParams--->android.widget.RelativeLayout.LayoutPara翻译 2013-11-01 08:33:59 · 1551 阅读 · 0 评论 -
AsyncTask //翻译加实例 未完
AsyncTask类概述:AsyncTask enables proper and easy use of the UI thread. This class allows to perform background operations and publish results on the UI thread without having to manipulate threads an翻译 2014-03-21 17:14:49 · 960 阅读 · 0 评论 -
Notifications
Notifications(notification的复数,通知,通告)A notification is a message you can display(显示) to the user outside of your application's normal UI. When you tell the system toissue(发行,发布) a notification,原创 2013-08-20 16:11:26 · 2088 阅读 · 1 评论 -
ViewGroup.LayoutParams
ViewGroup.LayoutParamspublic static class ViewGroup.LayoutParame extends Object:类概述:LayoutParams are used by views to tell their parents how they want to be laid out. See ViewGroup Layout Attr翻译 2013-11-26 09:52:11 · 887 阅读 · 0 评论 -
Design Principles//设计原则(完)
Design Principles//设计原则These design principles were developed by and for the Android User Experience Team to keep users' best interests in mind. Consider them as you apply your own creativity and翻译 2013-12-01 16:59:34 · 1259 阅读 · 0 评论 -
Using Touch Gestures//使用触摸手势
Using Touch Gestures//使用触摸手势This class describes how to write apps that allow users to interact with an app via touch gestures. Android provides a variety of APIs to help you create and detect ges翻译 2013-12-07 17:54:11 · 1188 阅读 · 0 评论 -
Creating Custom Views//制作自定义的视图
Creating Custom Views//制作自定义的视图The Android framework has a large set of View classes for interacting with the user and displaying various types of data. But sometimes your app has unique needs tha翻译 2013-11-24 08:50:43 · 1050 阅读 · 0 评论 -
android.graphics.Color
android.graphics.ColorClass OverviewThe Color class defines methods for creating and converting color ints. Colors are represented as packed ints, made up of 4 bytes: alpha, red, green,翻译 2013-10-25 09:44:25 · 969 阅读 · 0 评论 -
PopupWindow//弹出窗---未完
public class PopupWindow extends Object概述:A popup window that can be used to display an arbitrary view. The popup window is a floating container that appears on top of the current activity翻译 2014-02-10 09:36:27 · 1174 阅读 · 0 评论 -
UI Overview//用户界面概述
UI Overview//用户界面概述Android's system UI provides the framework on top of which you build your app. Important aspects include the Home screen experience, global device navigation, and notifications.翻译 2013-12-03 13:33:31 · 883 阅读 · 0 评论 -
Creating a View Class//建立视图类
Creating a View Class//建立视图类翻译 2013-11-24 09:06:46 · 1390 阅读 · 0 评论 -
ListView_BaseAdapter
一:java代码:com.baseadapter.activity.MainActivitypackage com.baseadapter.activity;import java.util.ArrayList;import java.util.List;import com.baseadapter.adapter.MoreListAdapter;import com.base原创 2013-08-15 16:14:48 · 1034 阅读 · 0 评论 -
android.graphics.Bitmap
android.graphics.Bitmap public final class Bitmap extends Object implements Parcelable 方法:public boolean compress //压缩,压紧 (Bitmap.CompressFormat format, int翻译 2013-11-04 20:59:38 · 2044 阅读 · 0 评论 -
Designing for Multiple Screens 为多样的屏幕设计
Designing for Multiple Screens//为多样的屏幕设计Android powers hundreds of device types with several different screen sizes, ranging from small phones to large TV sets. Therefore, it’s important翻译 2013-11-23 10:53:27 · 1050 阅读 · 0 评论 -
MeasureSpec
MeasureSpecpublic static class View.MeasureSpec extends Object类概述:A MeasureSpec encapsulates the layout requirements passed from parent to child. Each MeasureSpec represents a requirement for翻译 2013-11-25 16:30:57 · 1016 阅读 · 0 评论 -
android.view.View
android.view.Viewpublic class View extends Object implements Drawable.Callback KeyEvent.Callback AccessibilityEventSource xml属性 方法翻译 2013-11-03 15:01:32 · 1235 阅读 · 0 评论 -
android.graphics.Typeface
android.graphics.Typeface //图形,制图;字型Class OverviewThe Typeface class specifies the typeface and intrinsic style of a font. This is used in the paint, along with optionally Paint setting翻译 2013-10-25 09:29:07 · 1310 阅读 · 0 评论 -
Intents and Intent Filters//意图和意图过滤器
Intents and Intent Filters//意图和意图过滤器An Intent>app component. Although intents facilitate communication between components in several ways, there are three fundamental use-cases://一个Intent是一个消息发送翻译 2013-12-25 21:04:37 · 1061 阅读 · 0 评论 -
Notifications(API Guides)//未完
Notifications(API Guides)A notification is a message you can display to the user outside of your application's normal UI. When you tell the system to issue a notification, it first appears as an i翻译 2014-01-02 11:39:14 · 1215 阅读 · 0 评论 -
Supporting Different Screen Sizes //支持不同尺寸的屏幕
Supporting Different Screen Sizes //支持不同尺寸的屏幕This lesson shows you how to support different screen sizes by:Ensuring your layout can be adequately resized to fit the screenProviding approp翻译 2013-11-23 11:44:44 · 1074 阅读 · 0 评论 -
SlidingMenu//滑动菜单
SlidingMenu//滑动菜单package com.jeremyfeinstein.slidingmenu.lib;import java.lang.reflect.Method;import android.annotation.SuppressLint;import android.annotation.TargetApi;import android.app.Activ翻译 2013-12-09 18:31:20 · 3535 阅读 · 1 评论 -
android.widget.ImageView
android.widget.ImageView方法:(1)public void setVisibility (int visibility) //visibility:能见度,可见性Added in API level 1Set the enabled state of this view. //激活的,可行的Parameters翻译 2013-10-28 09:23:39 · 1283 阅读 · 0 评论 -
Grid View
Grid ViewGridView is a ViewGroup that displays items in a two-dimensional, scrollable grid. The grid items are automatically inserted to the layout using a ListAdapter.For an introduction翻译 2013-11-26 15:10:59 · 909 阅读 · 0 评论 -
List View //API Guides Layouts List View
List View //API GuidesListView is a view group that displays a list of scrollable items. The list items are automatically inserted to the list using an Adapter that pulls content from a source翻译 2013-11-29 09:08:33 · 1087 阅读 · 0 评论 -
Processes and Threads//进程和线程
Processes and Threads//进程和线程When an application component starts and the application does not have any other components running, the Android system starts a new Linux process for the application w翻译 2013-11-29 10:34:44 · 1030 阅读 · 0 评论 -
MotionEvent//动作事件
MotionEvent//动作事件public final class MotionEvent extends InputEvent implements Parcelable//android.view.InputEvent,android.view.MotionEvent翻译 2013-12-09 13:31:48 · 1230 阅读 · 0 评论 -
ListView_ArrayAdapter
一:java代码.package com.action;import android.app.Activity;import android.os.Bundle;import android.widget.ArrayAdapter;import android.widget.ListView;public class MainActivity extends Activity {原创 2013-08-15 14:10:26 · 1058 阅读 · 0 评论 -
android.widget.GridView
android.widget.GridViewClass OverviewA view that shows items in two-dimensional scrolling grid. The items in the grid come from the ListAdapter associated with this view.See the Grid翻译 2013-10-25 15:37:32 · 1008 阅读 · 0 评论 -
ViewGroup
方法:1.public static int getChildMeasureSpec (int spec, int padding, int childDimension)Added in API level 1Does the hard part of measureChildren: figuring out the MeasureSpec to pass to翻译 2013-11-25 15:06:07 · 826 阅读 · 0 评论