안녕하세요 

초보 개발자입니다.

접근성 기능을 테스트를 해보았느데요

행안부 지침 자료에는 코드 적용시 .setContentDescription() 이렇게만 적용해주면 된다고 해서 적용 해봤느데 적용이 안되네요..

혹시 제가 빼먹은것이 있는지 알려 주시면 감사하겠습니다..


public class MainActivity extends Activity {


@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

ImageButton imageButton = (ImageButton) findViewById(R.id.imageButton1);


imageButton.setContentDescription("이미지 버튼 이야야야야야");


Button button = (Button) findViewById(R.id.button1);


button.setContentDescription("걍 버튼이야야야야야야");


}

}