カメラを使用して写真をimageViewに保存するAndroidプロジェクトがあります。したがって、この imageView にテキストを貼り付けたいと思います。それが可能だ ??
質問する
203 次
4 に答える
0
次の手順を実行します :
ステップ 1 : まず、レイアウトを次のように変更しますRelativeLayout
ステップ 2 : ワークスペース内のimageviewボタンをクリックしてドラッグし、drawable フォルダーに保存した画像を選択します。
ステップ 3 : それを選択TextView
して、画像の中心にドラッグします。(右クリックしてテキストを編集し、目的のテキストに変更します)。
textStyleまたはtextSizeを使用して、テキストを大きくして書式設定することもできます。
簡単なサンプルコードは次のとおりです。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:src="@drawable/sm" />
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/imageView1"
android:layout_centerHorizontal="true"
android:layout_marginBottom="148dp"
android:textStyle="bold"
android:text="Here is my text " />
</RelativeLayout>
結果 :
于 2013-07-09T17:07:58.290 に答える
0
およびを含むRelativeLayout
またはを作成します。の上に が表示されます。FrameLayout
ImageView
TextView
TextView
ImageView
于 2013-07-09T16:31:42.387 に答える