This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Override | |
protected void onCreate(Bundle savedInstanceState) { | |
super.onCreate(savedInstanceState); | |
setContentView(R.layout.activity_subscription_purchase); | |
container = findViewById(R.id.container); | |
fragmentManager = getSupportFragmentManager(); | |
DataInputFragment fragment1 = DataInputFragment.newInstance(); | |
if (savedInstanceState == null) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.service:hover { | |
transition: transform 0.5s ease-in-out; | |
transform: translateY(-3%); | |
} | |
.service:hover::after { | |
opacity: 1; | |
} | |
.service::after { | |
content: ''; | |
position: absolute; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SpinnerInteractionListener implements AdapterView.OnItemSelectedListener, View.OnTouchListener { | |
boolean userSelect = false; | |
@Override | |
public boolean onTouch(View v, MotionEvent event) { | |
userSelect = true; | |
return false; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TaskDetailFragment taskDetailFragment = (TaskDetailFragment) getSupportFragmentManager() | |
.findFragmentById(R.id.contentFrame); | |
if (taskDetailFragment == null) { | |
taskDetailFragment = TaskDetailFragment.newInstance(taskId); | |
ActivityUtils.addFragmentToActivity(getSupportFragmentManager(), | |
taskDetailFragment, R.id.contentFrame); | |
} |