OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mViewBodyScroll
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
TextCandidates1LineViewManager.java
75
private HorizontalScrollView
mViewBodyScroll
;
234
mViewBodyScroll
= (HorizontalScrollView)mViewBody.findViewById(R.id.candview_scroll_1line);
235
mViewBodyScroll
.setOverScrollMode(View.OVER_SCROLL_NEVER);
236
mViewBodyScroll
.setOnTouchListener(new View.OnTouchListener() {
262
if (
mViewBodyScroll
.getScrollX() > 0) {
263
mViewBodyScroll
.smoothScrollBy(
264
(int)(
mViewBodyScroll
.getWidth() * -SCROLL_DISTANCE), 0);
273
if (!
mViewBodyScroll
.fullScroll(View.FOCUS_LEFT)) {
274
mViewBodyScroll
.scrollTo(
mViewBodyScroll
.getChildAt(0).getWidth(), 0)
[
all
...]
TextCandidatesViewManager.java
105
private ScrollView
mViewBodyScroll
;
461
mViewBodyScroll
= (ScrollView)mViewBody.findViewById(R.id.candview_scroll);
564
LinearLayout lineView = new LinearLayout(
mViewBodyScroll
.getContext());
640
mViewBodyScroll
.setLayoutParams(params);
649
mViewBodyScroll
.setLayoutParams(params);
650
mViewBodyScroll
.scrollTo(0, 0);
661
mViewBodyScroll
.setLayoutParams(params);
701
mViewBodyScroll
.scrollTo(0,
mViewBodyScroll
.getScrollY() + getCandidateMinimumHeight());
[
all
...]
Completed in 24 milliseconds