本文整理匯總了Java中android.widget.TextView.VISIBLE屬性的典型用法代碼示例。如果您正苦於以下問題:Java TextView.VISIBLE屬性的具體用法?Java TextView.VISIBLE怎麽用?Java TextView.VISIBLE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類android.widget.TextView
的用法示例。
在下文中一共展示了TextView.VISIBLE屬性的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: update
public void update(RecyclerView referenceList, float dx, float dy) {
if (indexList != null && indexList.getChildCount() > 2) {
show();
updatePosBasedOnReferenceList(referenceList);
View firstVisibleView = indexList.getChildAt(0);
View secondVisibleView = indexList.getChildAt(1);
TextView firstRowIndex = (TextView) firstVisibleView.findViewById(R.id.section_title);
TextView secondRowIndex = (TextView) secondVisibleView.findViewById(R.id.section_title);
int visibleRange = indexList.getChildCount();
int actual = indexList.getChildPosition(firstVisibleView);
int next = actual + 1;
int last = actual + visibleRange;
Drawable drawable = activity.getResources().getDrawable(R.drawable.circle_white_bg);
int backGroundColor = ToolbarContentTintHelper.toolbarTitleColor(activity, ThemeStore.primaryColor(activity));
stickyIndex.setTextColor(MaterialValueHelper.getPrimaryTextColor(activity, ColorUtil.isColorLight(backGroundColor)));
drawable.setColorFilter(backGroundColor, PorterDuff.Mode.SRC_IN);
stickyIndex.setBackground(drawable);
// RESET STICKY LETTER INDEX
stickyIndex.setText(String.valueOf(getIndexContext(firstRowIndex)).toUpperCase());
stickyIndex.setVisibility(TextView.VISIBLE);
ViewCompat.setAlpha(firstRowIndex, 1);
if (dy > 0) {
// USER SCROLLING DOWN THE RecyclerView
if (next <= last) {
if (isHeader(firstRowIndex, secondRowIndex)) {
stickyIndex.setVisibility(TextView.INVISIBLE);
firstRowIndex.setVisibility(TextView.VISIBLE);
ViewCompat.setAlpha(firstRowIndex, (1 - (Math.abs(ViewCompat.getY(firstVisibleView)) / firstRowIndex.getHeight())));
secondRowIndex.setVisibility(TextView.VISIBLE);
} else {
firstRowIndex.setVisibility(TextView.INVISIBLE);
stickyIndex.setVisibility(TextView.VISIBLE);
}
}
} else if (dy < 0) {
// USER IS SCROLLING UP THE RecyclerVIew
if (next <= last) {
// RESET FIRST ROW STATE
firstRowIndex.setVisibility(TextView.INVISIBLE);
if ((isHeader(firstRowIndex, secondRowIndex) || (getIndexContext(firstRowIndex) != getIndexContext(secondRowIndex))) && isHeader(firstRowIndex, secondRowIndex)) {
stickyIndex.setVisibility(TextView.INVISIBLE);
firstRowIndex.setVisibility(TextView.VISIBLE);
ViewCompat.setAlpha(firstRowIndex, 1 - (Math.abs(ViewCompat.getY(firstVisibleView) / firstRowIndex.getHeight())));
secondRowIndex.setVisibility(TextView.VISIBLE);
} else {
secondRowIndex.setVisibility(TextView.INVISIBLE);
}
}
}
if (stickyIndex.getVisibility() == TextView.VISIBLE) {
firstRowIndex.setVisibility(TextView.INVISIBLE);
}
} else {
hide();
}
}
示例2: update
public void update(RecyclerView referenceList, float dx, float dy) {
if (indexList != null && indexList.getChildCount() > 2) {
show();
//updatePosBasedOnReferenceList(referenceList);
View firstVisibleView = indexList.getChildAt(0);
View secondVisibleView = indexList.getChildAt(1);
TextView firstRowIndex = (TextView) firstVisibleView.findViewById(R.id.section_title);
TextView secondRowIndex = (TextView) secondVisibleView.findViewById(R.id.section_title);
int visibleRange = indexList.getChildCount();
int actual = indexList.getChildPosition(firstVisibleView);
int next = actual + 1;
int last = actual + visibleRange;
// RESET STICKY LETTER INDEX
stickyIndex.setText(String.valueOf(getIndexContext(firstRowIndex)).toUpperCase());
stickyIndex.setVisibility(TextView.VISIBLE);
ViewCompat.setAlpha(firstRowIndex, 1);
if (dy > 0) {
// USER SCROLLING DOWN THE RecyclerView
if (next <= last) {
if (isHeader(firstRowIndex, secondRowIndex)) {
stickyIndex.setVisibility(TextView.INVISIBLE);
firstRowIndex.setVisibility(TextView.VISIBLE);
ViewCompat.setAlpha(firstRowIndex, (1 - (Math.abs(ViewCompat.getY(firstVisibleView)) / firstRowIndex.getHeight())));
secondRowIndex.setVisibility(TextView.VISIBLE);
} else {
firstRowIndex.setVisibility(TextView.INVISIBLE);
stickyIndex.setVisibility(TextView.VISIBLE);
}
}
} else if (dy < 0) {
// USER IS SCROLLING UP THE RecyclerVIew
if (next <= last) {
// RESET FIRST ROW STATE
firstRowIndex.setVisibility(TextView.INVISIBLE);
if ((isHeader(firstRowIndex, secondRowIndex) || (getIndexContext(firstRowIndex) != getIndexContext(secondRowIndex))) && isHeader(firstRowIndex, secondRowIndex)) {
stickyIndex.setVisibility(TextView.INVISIBLE);
firstRowIndex.setVisibility(TextView.VISIBLE);
ViewCompat.setAlpha(firstRowIndex, 1 - (Math.abs(ViewCompat.getY(firstVisibleView) / firstRowIndex.getHeight())));
secondRowIndex.setVisibility(TextView.VISIBLE);
} else {
secondRowIndex.setVisibility(TextView.INVISIBLE);
}
}
}
if (stickyIndex.getVisibility() == TextView.VISIBLE) {
firstRowIndex.setVisibility(TextView.INVISIBLE);
}
} else {
hide();
}
}