Я думаю, что лучшее решение - это использовать TextView
для каждого символа с рисунком, который представляет два слоя "8
" и "X
" в качестве фона.
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView_heading"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/char_0"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="0"
android:textColor="@color/holo_blue_light"
android:textSize="28dip"
android:background="@drawable/lcd_char"/>
<TextView
android:id="@+id/char_1"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="1"
android:textColor="@color/holo_blue_light"
android:textSize="28dip"
android:background="@drawable/lcd_char"/>
<!-- ... -->
<TextView
android:id="@+id/char_n"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="n"
android:textColor="@color/holo_blue_light"
android:textSize="28dip"
android:background="@drawable/lcd_char"/>
</LinearLayout>
Однако, если вы предпочитаете, вы также можете использовать три горизонтальных LinearLayout
для каждого слоя следующим образом:
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/textView_heading"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/char_0"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:text="0"
android:textColor="@color/holo_blue_light"
android:textSize="28dip"
android:background="@drawable/lcd_char"/>
<!-- ... -->
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView_heading2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/char_8_0"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:alpha="0.15"
android:text="8"
android:textColor="@color/holo_blue_light"
android:textSize="28dip"
android:background="@drawable/lcd_char"/>
<!-- ... -->
</LinearLayout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/textView_heading3"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<TextView
android:id="@+id/char_X_0"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:alpha="0.15"
android:text="X"
android:textColor="@color/holo_blue_light"
android:textSize="28dip"
android:background="@drawable/lcd_char"/>
<!-- ... -->
</LinearLayout>
</merge>
Так что в методе onCreate () вы можете получить всепривел символы таким образом:
TextView[] lcdChars = new TextView[3/*lcd size*/];
for (int i = 0; i < lcdChars.length; i++) {
int resID = getResources().getIdentifier("char_"+i, "id", getPackageName());
lcdChars[i] = (TextView) findViewById(resID);
}
И затем установите нужный текст с помощью метода, подобного этому:
private void setLCDText(char[] chars){
for (int i = 0; i < lcdChars.length; i++) {
if(i < chars.length){
lcdChars[i].setText(chars, i, 1);
}else{
lcdChars[i].setText("");
}
}
}