安卓实现进度条和进度都是自己的图片的代码
时间: 2024-05-13 12:18:59 浏览: 34
以下是一个简单的安卓进度条和进度图片的实现代码:
布局文件progress_bar_layout.xml:
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/progress_bar_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/transparent" >
<ImageView
android:id="@+id/progress_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/progress_background" />
<ImageView
android:id="@+id/progress_bar"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:src="@drawable/progress_bar"
android:scaleType="fitXY" />
</RelativeLayout>
```
在Activity中动态设置进度:
```
public class MainActivity extends AppCompatActivity {
private ImageView mProgressBar;
private int mMaxProgress = 100;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.progress_bar_layout);
mProgressBar = (ImageView) findViewById(R.id.progress_bar);
mProgressBar.getLayoutParams().width = 0;
}
public void setProgressBar(int progress) {
if (progress <= mMaxProgress) {
int width = (int) (mProgressBar.getWidth() * ((float) progress / (float) mMaxProgress));
mProgressBar.getLayoutParams().width = width;
mProgressBar.requestLayout();
}
}
}
```
在Activity中调用setProgressBar(int progress)方法来更新进度条的进度即可。
需要注意的是,以上代码只是一个简单的实现示例,实际中需要根据自己的需求进行适当的修改。
阅读全文