Advertisement
Guest User

Untitled

a guest
Nov 21st, 2014
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1.  @Override
  2.     public View onCreateView(LayoutInflater inflater, ViewGroup container,
  3.                              Bundle savedInstanceState) {
  4.         // Inflate the layout for this fragment
  5.         View view = inflater.inflate(R.layout.time_configuration_fragment, container, false);
  6.         btAcept = (ImageButton) view.findViewById(R.id.btAcept);
  7.     btAcetp.setVisibility(View.INVISIBLE);
  8.  
  9.  
  10.  
  11. CODE WHEN I INITIALIZED ANIMATION
  12.  @Override
  13.     public void onStopTrackingTouch(SeekBar seekBar) {
  14.         switch (seekBar.getId()) {
  15.           case R.id.seekBarPomodoroTime:
  16.         if (Build.VERSION.SDK_INT >= 21) {
  17.                 Utilities.showView(btAcept);
  18.         }
  19.     break;
  20.     }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement