你好我this image,我想在这个黑板上写文字;这是我的xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:background="@drawable/blackboard">
<TextView
android:id="@+id/voto_lavagna"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:textColor="@color/white"
android:textSize="90sp"
android:textStyle="bold"/>
</RelativeLayout>
我的问题是,如果我在电路板上写了很多文字。我可以使用简单保证金吗?如何支持不同的分辨率?你有其他建议吗?
答案 0 :(得分:0)
您可以尝试将布局设置如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<LinearLayout
android:id="@+id/black_board_lay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/blackboard" >
<TextView
android:id="@+id/voto_lavagna"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:textColor="@color/white"
android:textSize="90sp"
android:textStyle="bold" />
</LinearLayout>
</RelativeLayout>