如何用Java在图像上写文字?

时间:2016-08-18 11:05:17

标签: android android-studio

我只想创建MEME Generator应用程序。

为此,我需要一个由custom View组成的EditText 输入数据后,它将变为TextView或EditText变为unEditable 然后它可以写出所需的图像 并允许我将组合结果保存为JPEG。

1 个答案:

答案 0 :(得分:0)

只需使用framelayout重叠两个视图

<FrameLayout
    android:id="@+id/frmImageContainer"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginBottom="10dp">

<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"/>

<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"/>

</FrameLayout>