作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 ConstrainLayout 中有一个自定义微调器,微调器选择的值未正确对齐。当我以相对布局显示微调器时,这很有效。我想在约束布局中正确显示
预期产出 (第一项是选定的项目):
Activity .xml
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/constrainLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.esri.arcgisruntime.mapping.view.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
</com.esri.arcgisruntime.mapping.view.MapView>
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#00000000"
android:overlapAnchor="false"
android:popupBackground="#00000000"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
spinner_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android= "http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
>
<TextView
android:id="@+id/txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:textColor="#FFF"
android:textSize="20sp"
android:gravity="right"
android:textStyle="bold|normal"
android:singleLine="true"
android:layout_weight="0.9"/>
<ImageView
android:id="@+id/img"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:layout_weight="0.1"
android:contentDescription="@null"/>
ArrayList<ItemData> list = new ArrayList<>();
list.add(new ItemData("Stop", R.drawable.locationdisplaydisabled));
list.add(new ItemData("On", R.drawable.locationdisplayon));
list.add(new ItemData("Re-Center", R.drawable.locationdisplayrecenter));
list.add(new ItemData("Navigation", R.drawable.locationdisplaynavigation));
list.add(new ItemData("Compass", R.drawable.locationdisplayheading));
SpinnerAdapter adapter = new SpinnerAdapter(this, R.layout.spinner_layout, R.id.txt, list);
mSpinner.setAdapter(adapter);
mSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
switch (position) {
case 0:
// Stop Location Display
break;
case 1:
// Start Location Display
break;
case 2:
// Re-Center MapView on Location
break;
case 3:
// Start Navigation Mode
break;
case 4:
// Start Compass Mode
break;
}
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
}
电流输出
最佳答案
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintHorizontal_bias="1"
app:layout_constraintVertical_bias="1"
尝试将这四行添加到 XML 中的微调器。
关于android - ConstrainLayout 中的自定义微调器未正确对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69025661/
我在 ConstrainLayout 中有一个自定义微调器,微调器选择的值未正确对齐。当我以相对布局显示微调器时,这很有效。我想在约束布局中正确显示 预期产出 (第一项是选定的项目): Activit
我正在使用 ConstraintLayout 使我的应用响应不同的屏幕尺寸。 我想使用比率来调整我的小部件的大小。所以要使用比率,我必须将宽度和高度设置为 match_constraints。 所以我
我是一名优秀的程序员,十分优秀!