안 드 로 이 드 사용자 정의 진도 바 이동 효과
사용자 정의 진도 바,효 과 는 다음 과 같 습 니 다.
CustomViewActivity.java
public class CustomViewActivity extends Activity {
private static final String TAG = "CustomViewActivity";
private TextView tv_schedule;
private View view;
private ProgressBar progressBar;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_custom_view);
initView();
}
private void initView() {
initProgressView();
}
private void initProgressView() {
tv_schedule = findViewById(R.id.tv_schedule);
view = findViewById(R.id.view);
progressBar = findViewById(R.id.progressbar);
int finishSpeed = 2;
Log.d(TAG,"finishSpeed="+finishSpeed);
float speedPer = ((float) finishSpeed)/8*100;
Log.d(TAG,"speedPer="+speedPer);
tv_schedule.setText(speedPer+"%");
progressBar.setProgress((int)speedPer);
setTextViewWidth(tv_schedule,view,speedPer);
}
private void setTextViewWidth(TextView textView,View view,float speed) {
Paint paint = new Paint();
float textWidth = paint.measureText(textView.getText().toString());
Log.d(TAG,"textWidth="+textWidth);
LinearLayout.LayoutParams params = (LinearLayout.LayoutParams) textView.getLayoutParams();
LinearLayout.LayoutParams params1 = (LinearLayout.LayoutParams) view.getLayoutParams();
if (textWidth > speed) {
params.weight = textWidth;
params1.weight = 100 - textWidth;
} else {
params.weight = speed;
params1.weight = 100 - speed;
}
}
}
activity_custom_view.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".custom.CustomViewActivity">
<LinearLayout
android:layout_marginTop="20px"
android:layout_marginHorizontal="30px"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text=" :"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RelativeLayout
android:layout_weight="4"
android:layout_width="0dp"
android:layout_height="wrap_content">
<ProgressBar
android:id="@+id/progressbar"
style="@android:style/Widget.ProgressBar.Horizontal"
android:max="100"
android:progress="50"
android:progressDrawable="@drawable/progress_drawable"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/tv_schedule"
android:text=""
android:gravity="center_horizontal"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"/>
<View
android:id="@+id/view"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="20px"/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>
</LinearLayout>
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.