編輯,我正在開發的圖像編輯應用程式,例如PicSay Android應用程序,其中我已經把文字圖像與自定義背景以及用戶可以在屏幕上調整通過觸摸/控制器的文本。我嘗試很多東西,但我不能這樣做,請幫我對於和有在Android的圖像編輯器提供的任何API?圖片和文字像PicSay Android應用
Thnaks,
編輯,我正在開發的圖像編輯應用程式,例如PicSay Android應用程序,其中我已經把文字圖像與自定義背景以及用戶可以在屏幕上調整通過觸摸/控制器的文本。我嘗試很多東西,但我不能這樣做,請幫我對於和有在Android的圖像編輯器提供的任何API?圖片和文字像PicSay Android應用
Thnaks,
我想利用這個演示代碼,可以幫助全給你。
的Java
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>
日Thnx答覆,但我想通過在屏幕等PicSay Android應用觸摸或控制器改變的EditText寬度和高度。 – Chirag