我正在开发像PicSay android 应用程序这样的图像编辑应用程序,其中我必须将文本放在具有自定义背景的图像上,并且用户可以通过屏幕上的触摸/控制器调整文本大小。我尝试了很多东西,但我做不到,请帮助我,Android 中是否有任何 API 可用于图像编辑器?
纳克斯,
我正在开发像PicSay android 应用程序这样的图像编辑应用程序,其中我必须将文本放在具有自定义背景的图像上,并且用户可以通过屏幕上的触摸/控制器调整文本大小。我尝试了很多东西,但我做不到,请帮助我,Android 中是否有任何 API 可用于图像编辑器?
纳克斯,
我认为使用此演示代码可能会对您有所帮助。
爪哇
public class MainActivity extends Activity implements OnTouchListener{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/*Put you code */
}
@Override
public boolean onTouch(View v, MotionEvent event) {
// TODO Auto-generated method stub
return false;
}
}
xml
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/root"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/test"
android:ems="10"
android:gravity="center"
android:textColor="#FFFFFF" >
</EditText>
</FrameLayout>