0
보기가 화면에 있는지 여부에 따라 탐색 바의 색상을 변경할지 여부를 결정할 수있는 방법이 있습니다. 이 방법은 작성되었지만 호출 방법은 모르겠습니다. 버튼 클릭 이벤트로이 메서드를 호출하지만 매우 어렵습니다. 이벤트 콜을 클릭하는 대신 자동으로 전화를 걸고 싶습니다. 어떻게해야합니까?기준에 따라 Android 탐색 바가 색상이 자동으로 바뀝니다.
public class Index extends Activity implements View.OnClickListener{
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.index);
}
private void changeNavigationColour(View view){
Point p = new Point();
getWindowManager().getDefaultDisplay().getSize(p);
int[] loacation = new int[2];
view.getLocationInWindow(loacation);
Toast.makeText(this, Arrays.toString(loacation),Toast.LENGTH_SHORT).show();
Rect ivRect = new Rect(view.getLeft(),view.getTop(),view.getRight(),view.getBottom());
LinearLayout head = (LinearLayout) findViewById(R.id.index_head);
if(view.getLocalVisibleRect(ivRect)){
//Change the navigation color
head.setBackgroundColor(getResources().getColor(R.color.transparent));
}else {
//Change the navigation color
head.setBackgroundColor(getResources().getColor(R.color.colorPrimary));
}
}
문제를 이해하는 데 도움이되도록 노력 해주세요. –
은 귀하의 코드를 보여줍니다. –
이 '기준'변경에 대해 더 명확히해야합니다. 그게 무엇입니까? 어떻게 그걸 얻나요? –