android-linearlayout 相关问题

LinearLayout是Android中的基本布局之一。它可以水平或垂直地将孩子一个接一个地安排好。

软件包'android'/ new pacakge中找不到属性'layout_width'的资源标识符

我一直在尝试找出代码的问题,但是,我现在一无所知,几乎检查了所有内容,在尝试为我的应用程序构建登录页面时出现此错误。对不起...

回答 1 投票 0

Android可以使用这种布局吗?

此布局看起来很简单,但是我找不到使用线性布局或任何其他布局在xml中单独执行此操作的任何方法,而没有动态更改属性。这就是我想要的,如果文本很短,则...

回答 4 投票 2

ConstraintLayout中的TextView换行/关闭屏幕

我正在尝试在ConstraintLayout中并排设置两个TextView。 TextView2(市场)应始终位于TextView1的右侧。它永远不会离开屏幕。这是我对不同的要求...

回答 3 投票 0

setLayoutParams()方法在onLayout()中不起作用

我试图在扩展的LinearLayout中调整组件的大小。在方法onLayout()中。公共ExtLinearLayout(上下文上下文,AttributeSet属性,int defStyle){super(context,attrs,0); init(...

回答 1 投票 0

我的应用程序不断停止。这是一个基本的登录页面。附有Logcat代码

2020-02-05 12:56:21.088 14966-14991 / com.splash.splashactivityassingment E / eglCodecCommon:glUtilsParamSize:unknow param 0x00008cdf 2020-02-05 12:56:21.089 14966-14991 / com.splash ... 。

回答 1 投票 -1

父RelativeLayout内子LinearLayouts的百分比高度(加权)

我在相对布局内直接有两个线性布局。我希望第一个LinearLayout占据75%的高度,接下来的25%。我该如何实现?例如

回答 3 投票 1

动态添加视图时,Android边距不起作用

我正在向LinearLayout动态添加一些视图:LinearLayout.LayoutParams参数= new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT,LinearLayout.LayoutParams.WRAP_CONTENT); ...

回答 2 投票 0

在LinearLayout中自动计算边距

我有问题。我想实现这一目标:我正在使用LinearLayout。 LinearLayout和ChildViews的大小为const。问题是,我的工作结果看起来像这样:这是我的代码:

回答 2 投票 0

如何在水平android中管理三个视图

我在水平方向上有三个3个textview。第一个和第三个textview是静态的,表示其特定宽度,而第二个是动态的。当第二个文本视图获取更多数据时,则隐藏其他视图。为了解决我用的...

回答 1 投票 0

将两个项目限制在线性布局的顶部和底部

我有约束布局,并且在图像和线性布局内部。线性布局包含两个文本视图,我希望它们出现在线性布局约束的顶部和底部:

回答 2 投票 0

kotlin-实用设置视图aplha

我想实用地更改视图的alpha值,可以通过xml轻松设置它,并且可以正常工作,该值介于0到1之间,如果在xml中将其设置为0.5,则它在xml中的视图是半透明的。 。

回答 1 投票 0

我如何以编程方式在线性布局中添加TextView?

我有一个用Kotlin开发的应用程序,该应用程序使用线性布局,我想在其中插入多个TextView。由于TextView的数量可以更改,因此我想在代码中动态添加它们,而不是...

回答 1 投票 0

我如何以编程方式在线性布局中添加TextView?

我有一个用Kotlin开发的应用程序,该应用程序使用线性布局,我想在其中插入多个TextView。由于TextView的数量可以更改,因此我想在代码中动态添加它们,而不是...

回答 1 投票 0

Layout和drawable的居中方式不同

我的初始屏幕有两种布局,它们基本上由一个位于屏幕中心的图标组成。其中之一是drawable / launch_screen.xml。这个用于AppTheme。

回答 1 投票 0

视图被打包在ConstraintLayout中,视图在LinearLayout中用尽屏幕

我正在像下面那样实现一个注册/登录屏幕,我已经像下面这样使用ConstraintLayout来尝试了这个 [ 我建议您使用所有的屏幕密度,而不要使用所有的密度,您可以使用著名的库SDP或遵循android提供的指南。第二次使用Constraintlayout的Guideline类。这是示例代码片段,您也可以使用此代码片段。 <?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" android:layout_margin="16dp"> <ImageView android:id="@+id/img" android:layout_width="@dimen/_200sdp" android:layout_height="@dimen/_200sdp" android:layout_marginTop="16dp" android:src="@drawable/ic_launcher" app:layout_constraintBottom_toTopOf="@+id/btn1" app:layout_constraintEnd_toStartOf="@+id/right" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="@+id/left" app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/btn1" android:layout_width="0dp" android:layout_height="wrap_content" android:text="Button 1" app:layout_constraintBottom_toTopOf="@+id/btn2" app:layout_constraintEnd_toStartOf="@+id/right" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="@+id/left" app:layout_constraintTop_toBottomOf="@+id/img" /> <Button android:id="@+id/btn2" android:layout_width="0dp" android:layout_height="wrap_content" android:text="Button 2" app:layout_constraintBottom_toTopOf="@+id/txt_already_member" app:layout_constraintEnd_toStartOf="@+id/right" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="@+id/left" app:layout_constraintTop_toBottomOf="@+id/btn1" /> <TextView android:id="@+id/txt_already_member" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="20dp" android:text="Already Member? Sign In" android:textSize="16sp" app:layout_constraintBottom_toTopOf="@+id/divider" app:layout_constraintEnd_toStartOf="@+id/right" app:layout_constraintHorizontal_bias="0.5" app:layout_constraintStart_toStartOf="@+id/left" app:layout_constraintTop_toBottomOf="@+id/btn2" /> <TextView android:id="@+id/txt_agreement" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginBottom="24dp" android:text="By continuing you agree to our terms and privacy policy" android:textSize="12sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toStartOf="@+id/right" app:layout_constraintStart_toStartOf="@+id/left" app:layout_constraintTop_toTopOf="@+id/divider" app:layout_constraintVertical_bias="1.0" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/left" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" app:layout_constraintGuide_begin="@dimen/_16sdp" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/right" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="vertical" app:layout_constraintGuide_end="@dimen/_16sdp" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/divider" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintGuide_percent="0.7" app:layout_constraintTop_toBottomOf="@+id/txt_already_member" /> 实际上,我的问题的解决方案是将Guideline中的ConstraintLayout与Guideline的app:layout_constraintGuide_percent属性一起使用,并将视图限制为准则。 由于app:layout_constraintGuide_percent的值是 percentage 而不是dp值,所以不管屏幕的宽度/高度如何,它都响应良好。 示例: <?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" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:layout_margin="16dp" tools:context=".MainActivity"> <ImageView android:id="@+id/img" android:layout_width="250dp" android:layout_height="200dp" android:src="@drawable/ic_launcher_background" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="@+id/guideline4" /> <Button android:id="@+id/btn1" android:layout_width="match_parent" android:layout_height="56dp" android:layout_marginStart="20dp" android:layout_marginEnd="20dp" android:text="Button 1" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="1.0" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="@+id/guideline5" /> <Button android:id="@+id/btn2" android:layout_width="match_parent" android:layout_height="56dp" android:layout_marginTop="8dp" android:layout_marginStart="20dp" android:layout_marginEnd="20dp" android:text="Button 2" app:layout_constraintEnd_toEndOf="@+id/btn1" app:layout_constraintStart_toStartOf="@+id/btn1" app:layout_constraintTop_toBottomOf="@+id/btn1" /> <TextView android:id="@+id/txt_already_member" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="16dp" android:layout_marginBottom="16dp" android:text="Already Member? Sign In" android:textSize="16sp" app:layout_constraintBottom_toTopOf="@+id/txt_agreement" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/btn2" /> <TextView android:id="@+id/txt_agreement" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="32dp" android:text="By continuing you agree to our terms and privacy policy " android:textSize="12sp" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/guideline4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constraintGuide_percent=".1" /> <androidx.constraintlayout.widget.Guideline android:id="@+id/guideline5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:orientation="horizontal" app:layout_constraintGuide_percent=".6" /> </androidx.constraintlayout.widget.ConstraintLayout> 非常感谢Rehan Sarwar记得我关于Guideline的内容。

回答 2 投票 0

以编程方式管理LinearLayout

我有一个正在以编程方式构建的类,我需要调整2按钮的布局以使其看起来与其他类相似。在此类AttributeWizard中,我正在遍历代码,因为我正在执行...

回答 1 投票 0

[在android中单击线性布局时将选择单选按钮

我创建了一个包含2个线性布局的1个单选组。这2个线性布局分别包含1个单选按钮。创建线性布局仅是为了将样式应用于收音机组和...

回答 1 投票 1

为什么片段中的EditText导航到另一个片段并在Kotlin中使用后退按钮返回相同的值?

我是Android开发和Kotlin的新手。我碰到了这个使我感到困惑的问题。我在片段A中有2个EditText元素,每个元素都有不同的文本。当我导航到片段B和...

回答 2 投票 0

在右上角放置标签

我正在尝试在卡片视图右侧的版式中放置一个“新”标签:Android Studio中没有任何预览:虽然版式已显示,但内容可能未显示...] >

回答 1 投票 0

Android Cardview:在右上角放置标签

我正在尝试在卡片视图右侧的版式中放置一个“新”标签:Android Studio中没有任何预览:虽然版式已显示,但内容可能未显示...] >

回答 1 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.