/developers/build/prebuilts/gradle/BasicTransition/Application/src/main/java/com/example/android/basictransition/ |
BasicTransitionFragment.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 51 public View onCreateView(LayoutInflater inflater, ViewGroup container, 53 View view = inflater.inflate(R.layout.fragment_basic_transition, container, false); local 54 assert view != null; 55 RadioGroup radioGroup = (RadioGroup) view.findViewById(R.id.select_scene); 57 mSceneRoot = (ViewGroup) view.findViewById(R.id.scene_root) [all...] |
/developers/build/prebuilts/gradle/BorderlessButtons/Application/src/main/java/com/example/android/borderlessbuttons/ |
MainActivity.java | 24 import android.view.Menu; 25 import android.view.MenuItem; 26 import android.view.View; 27 import android.view.ViewGroup; 48 findViewById(R.id.cancel_button).setOnClickListener(new View.OnClickListener() { 50 public void onClick(View view) { 55 findViewById(R.id.ok_button).setOnClickListener(new View.OnClickListener() { 57 public void onClick(View view) [all...] |
/developers/build/prebuilts/gradle/DocumentCentricRelinquishIdentity/Application/src/main/java/com/example/android/documentcentricrelinquishidentity/ |
RelinquishIdentityActivity.java | 22 import android.view.View; 43 public void createNewDocument(View view) {
|
/developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/ |
HeadsUpNotificationFragment.java | 26 import android.view.LayoutInflater; 27 import android.view.View; 28 import android.view.ViewGroup; 80 public View onCreateView(LayoutInflater inflater, ViewGroup container, 87 public void onViewCreated(View view, Bundle savedInstanceState) { 88 super.onViewCreated(view, savedInstanceState); 89 mShowNotificationButton = (Button) view.findViewById(R.id.show_notification_button); 90 mShowNotificationButton.setOnClickListener(new View.OnClickListener() [all...] |
/developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/ |
HeadsUpNotificationFragment.java | 26 import android.view.LayoutInflater; 27 import android.view.View; 28 import android.view.ViewGroup; 80 public View onCreateView(LayoutInflater inflater, ViewGroup container, 87 public void onViewCreated(View view, Bundle savedInstanceState) { 88 super.onViewCreated(view, savedInstanceState); 89 mShowNotificationButton = (Button) view.findViewById(R.id.show_notification_button); 90 mShowNotificationButton.setOnClickListener(new View.OnClickListener() [all...] |
/developers/samples/android/ui/activitytasks/DocumentCentricRelinquishIdentity/Application/src/main/java/com/example/android/documentcentricrelinquishidentity/ |
RelinquishIdentityActivity.java | 22 import android.view.View; 43 public void createNewDocument(View view) {
|
/developers/samples/android/ui/holo/BorderlessButtons/Application/src/main/java/com/example/android/borderlessbuttons/ |
MainActivity.java | 24 import android.view.Menu; 25 import android.view.MenuItem; 26 import android.view.View; 27 import android.view.ViewGroup; 48 findViewById(R.id.cancel_button).setOnClickListener(new View.OnClickListener() { 50 public void onClick(View view) { 55 findViewById(R.id.ok_button).setOnClickListener(new View.OnClickListener() { 57 public void onClick(View view) [all...] |
/developers/samples/android/ui/transition/BasicTransition/Application/src/main/java/com/example/android/basictransition/ |
BasicTransitionFragment.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 51 public View onCreateView(LayoutInflater inflater, ViewGroup container, 53 View view = inflater.inflate(R.layout.fragment_basic_transition, container, false); local 54 assert view != null; 55 RadioGroup radioGroup = (RadioGroup) view.findViewById(R.id.select_scene); 57 mSceneRoot = (ViewGroup) view.findViewById(R.id.scene_root) [all...] |
/development/samples/HeavyWeight/src/com/example/android/heavyweight/ |
HeavyWeight.java | 21 import android.view.View; 22 import android.view.View.OnClickListener; 40 public void onClick(View v) {
|
/development/samples/browseable/BasicTransition/src/com.example.android.basictransition/ |
BasicTransitionFragment.java | 24 import android.view.LayoutInflater; 25 import android.view.View; 26 import android.view.ViewGroup; 51 public View onCreateView(LayoutInflater inflater, ViewGroup container, 53 View view = inflater.inflate(R.layout.fragment_basic_transition, container, false); local 54 assert view != null; 55 RadioGroup radioGroup = (RadioGroup) view.findViewById(R.id.select_scene); 57 mSceneRoot = (ViewGroup) view.findViewById(R.id.scene_root) [all...] |
/development/samples/browseable/BorderlessButtons/src/com.example.android.borderlessbuttons/ |
MainActivity.java | 24 import android.view.Menu; 25 import android.view.MenuItem; 26 import android.view.View; 27 import android.view.ViewGroup; 48 findViewById(R.id.cancel_button).setOnClickListener(new View.OnClickListener() { 50 public void onClick(View view) { 55 findViewById(R.id.ok_button).setOnClickListener(new View.OnClickListener() { 57 public void onClick(View view) [all...] |
/development/samples/browseable/DocumentCentricRelinquishIdentity/src/com.example.android.documentcentricrelinquishidentity/ |
RelinquishIdentityActivity.java | 22 import android.view.View; 43 public void createNewDocument(View view) {
|
/development/samples/browseable/LNotifications/src/com.example.android.lnotifications/ |
HeadsUpNotificationFragment.java | 26 import android.view.LayoutInflater; 27 import android.view.View; 28 import android.view.ViewGroup; 80 public View onCreateView(LayoutInflater inflater, ViewGroup container, 87 public void onViewCreated(View view, Bundle savedInstanceState) { 88 super.onViewCreated(view, savedInstanceState); 89 mShowNotificationButton = (Button) view.findViewById(R.id.show_notification_button); 90 mShowNotificationButton.setOnClickListener(new View.OnClickListener() [all...] |
/development/samples/devbytes/animation/ListViewAnimations/src/com/example/android/listviewanimations/ |
ListViewAnimations.java | 29 import android.view.View; 63 public void onItemClick(AdapterView<?> parent, final View view, int position, long id) { 66 view.animate().setDuration(1000).alpha(0). 72 view.setAlpha(1); 76 // Here's where the problem starts - this animation will animate a View object. 77 // But that View may get recycled if it is animated out of the container, 78 // and the animation will continue to fade a view that now contains unrelated 80 ObjectAnimator anim = ObjectAnimator.ofFloat(view, View.ALPHA, 0) [all...] |
/device/asus/deb/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/flo/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/fugu/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/grouper/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/asus/tilapia/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/htc/flounder/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/lge/hammerhead/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/lge/mako/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/moto/shamu/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/device/samsung/manta/self-extractors/ |
PART1 | 8 echo -n Press Enter to view the license
|
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
tcmalloc_snapshot_view.css | 11 .tcmalloc-snapshot-view ul { 21 .tcmalloc-snapshot-view li { 31 .tcmalloc-snapshot-view .collapsed { 36 .tcmalloc-snapshot-view .expanded {
|