layout_width/heigth = wrap_content in progress bar and switch 是什么意思
What does it mean layout_width/heigth = wrap_content in progress bar and swith
我无法理解视图元素的值 wrap_content(例如 ProgressBar、Switch ,带有背景的原始 View - 由于某种原因占据了屏幕上所有可用的位置),它不是微不足道的,例如 TextView 那 wrap_content 意味着 "be as tall and wide" 作为你内心的文本”。
谁能帮我理解一下?
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/prog_bar_containter"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/black"
android:elevation="20dp"
app:layout_constraintBottom_toBottomOf="@+id/rc"
app:layout_constraintEnd_toEndOf="@+id/rc"
app:layout_constraintStart_toStartOf="@+id/rc"
app:layout_constraintTop_toTopOf="@+id/rc">
<ProgressBar
android:id="@+id/prog_bar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
在每个视图组件中你找到方法 onMeasure
这里开发者计算测量大小
使视图出现的视图将
如果你指定高度宽度,你会让视图看起来像这样如果你添加自定义高度宽度可能视图看起来不太好(对不起我的英语)
如果你想知道在布局中使用的组件的宽度和高度是多少,你可以使用这段代码。这里一个progressbar的height和width设置为wrap_content,表示它的width和height有默认尺寸,我们想知道这些默认尺寸是多少。结果在 px
.
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt
import android.os.Bundle
import android.util.Log
import androidx.appcompat.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main.*
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
progressbar.post(Runnable {
val a= progressbar.getWidth()
val b=progressbar.getHeight()
Log.d("abc", a.toString())
Log.d("abc", b.toString())
})
}
}
我无法理解视图元素的值 wrap_content(例如 ProgressBar、Switch ,带有背景的原始 View - 由于某种原因占据了屏幕上所有可用的位置),它不是微不足道的,例如 TextView 那 wrap_content 意味着 "be as tall and wide" 作为你内心的文本”。 谁能帮我理解一下?
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/prog_bar_containter"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@color/black"
android:elevation="20dp"
app:layout_constraintBottom_toBottomOf="@+id/rc"
app:layout_constraintEnd_toEndOf="@+id/rc"
app:layout_constraintStart_toStartOf="@+id/rc"
app:layout_constraintTop_toTopOf="@+id/rc">
<ProgressBar
android:id="@+id/prog_bar"
style="?android:attr/progressBarStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
在每个视图组件中你找到方法 onMeasure
这里开发者计算测量大小
使视图出现的视图将
如果你指定高度宽度,你会让视图看起来像这样如果你添加自定义高度宽度可能视图看起来不太好(对不起我的英语)
如果你想知道在布局中使用的组件的宽度和高度是多少,你可以使用这段代码。这里一个progressbar的height和width设置为wrap_content,表示它的width和height有默认尺寸,我们想知道这些默认尺寸是多少。结果在 px
.
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ProgressBar
android:id="@+id/progressbar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt
import android.os.Bundle
import android.util.Log
import androidx.appcompat.app.AppCompatActivity
import kotlinx.android.synthetic.main.activity_main.*
class MainActivity : AppCompatActivity() {
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
progressbar.post(Runnable {
val a= progressbar.getWidth()
val b=progressbar.getHeight()
Log.d("abc", a.toString())
Log.d("abc", b.toString())
})
}
}