0
라틴 키보드 예제를 사용하여 사용자 지정 키 보드를 작성하고 있습니다. 나는 글꼴 색상과 핵심 배경 색상을 변경하지 않아도됩니다. 색상이 정의 된 xml 또는 코드에서 해당 위치를 찾지 못했습니다. 나는 그것의 안드로이드 키보드 클래스에 정의 된 것으로 보인다. 그것이 바뀔 수 있다면 pls가 어떻게 도움이되는지 알려줍니다.라틴 키보드 사용자 지정 방법 예
라틴 키보드 예제를 사용하여 사용자 지정 키 보드를 작성하고 있습니다. 나는 글꼴 색상과 핵심 배경 색상을 변경하지 않아도됩니다. 색상이 정의 된 xml 또는 코드에서 해당 위치를 찾지 못했습니다. 나는 그것의 안드로이드 키보드 클래스에 정의 된 것으로 보인다. 그것이 바뀔 수 있다면 pls가 어떻게 도움이되는지 알려줍니다.라틴 키보드 사용자 지정 방법 예
go to your xml file. you should be working with something like button within a linearLayout(or may be in a table layout).
so the code should look something like this:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
*************here your code should look like this ,to color your button"***********
android:text="yourText"
//this line changs the background color
android:background="#888888" //for black or you can use any color in this format.
//this line changes the color of the text on the button
android:textColor="#ffffff"//text appears in white...
so this is the way you can manipulate your code in xml file...
if you are in java... then, first initialize your all buttons.Then you can edit any color directly from your java code... for examaple
Button btn=(Button) findViewById(R.id.button_1);
btn.setcolor(BLACK);
so,the better way is if you are working with your xml file for customization...
Hope this answers your question.`enter code here`
이것은 온 스크린 키보드의 키와 아무 관련이 없습니다. –