我希望将宽度设为match_parent,但高度为宽度的50%。
我该怎么做?
通过活动中的java代码是唯一的方法吗?我必须阅读屏幕宽度并设置高度。
答案 0 :(得分:1)
您可以使用ConstraintLayout实现任何所需的宽高比。
要设置ConstraintLayout,请执行以下操作:Build a Responsive UI with ConstraintLayout。 然后你可以做这样的事情:
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintDimensionRatio="h,2:1"
app:layout_constraintHorizontal_bias="0.0" />
</android.support.constraint.ConstraintLayout>
答案 1 :(得分:0)
您可以使用LinearLayout并使用相同的权重制作2个块 Look here for ex.
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="2">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:layout_weight="1"/>
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="text"
android:layout_weight="1"/>
</LinearLayout>
答案 2 :(得分:0)
try it.
<Button
android:id="@+id/button"
android:layout_width="0dp"
android:layout_height="150dp"
android:layout_weight="1"
/>
<TextView
android:id="@+id/text"
android:layout_width="0dp"
android:layout_height="150dp"
android:layout_weight="1"
/>
答案 3 :(得分:0)
您可以通过扩展您正在使用的视图类以编程方式执行此操作,并覆盖OnMeasure方法,如下所示:
public class HalfHeightTextView extends AppCompatTextView {
public HalfHeightTextView(Context context) {
super(context);
}
public HalfHeightTextView(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public HalfHeightTextView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
//We take the measured height and set half of it as height
setMeasuredDimension(widthMeasureSpec, widthMeasureSpec/2);
}
}
然后你应该在布局中使用它
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.example.android.sunshine.utilities.HalfHeightTextView
android:layout_width="match_parent"
android:text="This is a test"
android:background="@color/colorAccent"
android:layout_height="wrap_content"/>
答案 4 :(得分:0)
为了获得更好的外观体验和轻松实施,我建议您只需在Space
的中心添加RelativeLayout
或其他不可见的小部件,然后添加所需的视图尊重Space
或隐形小部件。
例如,中间顶部有一个listView
,中间底部有另一个RelativeLayout
,您需要:
您也可以轻松更改为:
XML:
<?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="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/textViewCenterInvisible"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" />
<ListView
android:id="@+id/leftListView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_above="@+id/relativeLayout" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/textViewCenterInvisible"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:id="@+id/relativeLayout">
<TextView
android:id="@+id/textViewCenterTopSecondLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginTop="10sp"
android:gravity="center"
android:text="Text in Second Layout Center Top" />
<ImageView
android:id="@+id/imageViewCenterSecondLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/coins"
android:layout_marginTop="10sp"
android:layout_below="@+id/textViewCenterTopSecondLayout"
android:layout_centerHorizontal="true" />
<Button
android:id="@+id/button2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_alignParentStart="true"
android:text="Button of second layout" />
</RelativeLayout>
</RelativeLayout>
只是玩对齐。
答案 5 :(得分:0)
试试这种方式,希望这会对你有所帮助。
Display display = getWindowManager().getDefaultDisplay();
Point size = new Point();
display.getSize(size);
int s_width = size.x;
此处s_width是您的设备屏幕宽度,现在您可以将match_parent
作为view
和(s_width/2)
的宽度作为View的高度传递。