我有基于imageButtons
打开的对话框,我可以为每个imageButton
打开对话框,但是我的对话框不会显示完整的数据。
Custom dialog
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:layout_width="wrap_content"
android:layout_height="match_parent">
<ImageView
android:id="@+id/dialog_imageview"
android:layout_width="294dp"
android:layout_height="246dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_centerInParent="true"
android:layout_marginStart="68dp"
android:layout_marginTop="274dp"
android:layout_marginEnd="69dp"
android:layout_marginBottom="270dp"
android:contentDescription="image"
android:foregroundGravity="center"
tools:srcCompat="@tools:sample/avatars[0]" />
<TextView
android:id="@+id/tv_text"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="59dp"
android:layout_marginTop="474dp"
android:layout_marginEnd="59dp"
android:layout_marginBottom="136dp"
android:gravity="center_vertical"
android:text="TextView"
android:textAlignment="center"
android:textSize="30sp" />
<Button
android:id="@+id/close_btn"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="285dp"
android:layout_marginTop="680dp"
android:layout_marginEnd="59dp"
android:layout_marginBottom="193dp"
android:background="#F50057"
android:gravity="center"
android:text="Close"
android:textAlignment="center"
android:textColor="#FFFFFF" />
<Button
android:id="@+id/play_btn"
style="@style/Widget.AppCompat.Button.Borderless"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentEnd="true"
android:layout_alignParentBottom="true"
android:layout_marginStart="59dp"
android:layout_marginTop="680dp"
android:layout_marginEnd="289dp"
android:layout_marginBottom="190dp"
android:background="#00E676"
android:gravity="center"
android:text="Play"
android:textAlignment="center" />
</RelativeLayout>
Activity function
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_buildings)
// open dialog1
val imageButton1 = this.findViewById(R.id.imageButton1) as ImageButton;
imageButton1.setOnClickListener() {
val dialog = Dialog(context, android.R.style.Theme_Translucent_NoTitleBar)
dialog.requestWindowFeature(Window.FEATURE_NO_TITLE)
dialog.getWindow().setLayout(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.MATCH_PARENT)
dialog.getWindow().setGravity(Gravity.CENTER)
dialog.setContentView(R.layout.dialog_custom)
val tv_text = dialog.findViewById(R.id.tv_text)as TextView
val btn_close = dialog.findViewById(R.id.close_btn) as Button
val btn_play = dialog.findViewById(R.id.play_btn) as Button
val imageView = dialog.findViewById(R.id.dialog_imageview) as ImageView
imageView.setImageResource(R.drawable.school) //set image here
tv_text.setText("School") // set description here
//insert your button function here
btn_close.setOnClickListener {
fun onClick(v: View) {
dialog.dismiss()
}
}
btn_play.setOnClickListener {
fun onClick(v: View) {
val mp: MediaPlayer? = MediaPlayer.create(this, R.raw.a)
mp?.start();
}
}
dialog.show();
}
}
有什么想法吗?
答案 0 :(得分:0)
不同的手机具有不同的屏幕尺寸,在您的布局中,您使用的是固定尺寸的视图(例如,固定尺寸为android:layout_marginTop="474dp"
),结果是看起来效果不错一个屏幕(您的android studio预览屏幕)在另一屏幕(您的实际手机)上看起来效果不佳。
如何解决它-您可以使用ConstraintLayout使屏幕对所有屏幕尺寸都具有响应性。
以这种布局为例:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:text="Button"
app:layout_constraintHeight_percent="0.1"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/guideline" />
<Button
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:text="Button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_percent="0.1"
app:layout_constraintTop_toTopOf="@+id/guideline" />
<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:scaleType="fitXY"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHeight_percent="0.4"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:srcCompat="@tools:sample/avatars[6]" />
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:gravity="center"
android:text="Your text here"
app:layout_constraintBottom_toTopOf="@+id/guideline"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/imageView" />
<android.support.constraint.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.7" />
</android.support.constraint.ConstraintLayout>
它将看起来像这样,并且将响应所有屏幕尺寸:
这看起来像您想要的样子,但让我们解释一下我所做的事情:
我在按钮上使用了app:layout_constraintHeight_percent="0.1"
来告诉它们,其高度等于屏幕尺寸的10%
(不是固定尺寸的尺寸)。
在同一概念上,我还使用了app:layout_constraintHeight_percent="0.4"
,因此图像的高度等于屏幕尺寸的40%
。
我还使用Guidelines来更好地控制按钮的位置。
您可以在Support different screen sizes,Barriers以及如上所述的Guidelines中找到有关创建自适应布局的更多信息
使用上述工具,您可以创建响应式布局。
您不必使用ConstraintLayout
来实现此目的,您还有其他选择,但是我发现这是创建布局的最简单方法。