本文介绍了如何使用Android的一个PSD?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个进度条的PSD GUI布局。我想切片并在Android应用中使用它。问题是,不像一个按钮,一个人如何添加动态元素像进步和运动酒吧静态PSD层。

I have a psd gui layout of a progress bar. I want to slice it up and use it in android app. The problem is , unlike a button , how does one add dynamic elements to the static psd layers like progress and movement to the bar .

推荐答案

首先,你需要将你的PSD文件导出到PNG或类似的格式,并把它放在你的绘制文件夹中。
不要在你的XML如下:

First, you need to export your PSD file to a PNG or similar format and put it in your drawable folder.Do the following in your XML:

<ProgressBar
  android:id="@+id/progressBar1"
  style="?android:attr/progressBarStyleHorizontal"
  android:progressDrawable="@drawable/custom_progressbar"         
  android:layout_width="wrap_content"
  android:layout_height="wrap_content" />

在运行时执行以下操作

At run time do the following

// Get the Drawable custom_progressbar                     
Drawable draw=res.getDrawable(R.drawable.custom_progressbar);
// set the drawable as progress drawable
progressBar.setProgressDrawable(draw)

回答

这篇关于如何使用Android的一个PSD?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 00:32