以下是我的xml代码。在我的LinearLayout
。我有两个子视图,使用weightSum
对齐。由于ImageView
,我有一个weightSum
的宽度正确对齐,但问题在于它的高度。我希望它的高度与宽度相同。
有没有使用静态dp
值的解决方案。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:paddingBottom="5dp"
android:paddingLeft="5dp"
android:paddingRight="5dp">
<LinearLayout
android:background="@drawable/background_gradien_yellow"
android:weightSum="10"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:layout_weight="6"
android:id="@+id/startbtn"
android:textStyle="bold"
android:alpha="0.8"
android:textColor="#fff"
android:text="@string/start"
android:layout_centerInParent="true"
android:background="@drawable/background_gradient_circular"
android:layout_width="match_parent"
android:layout_height="150dp"/>
<LinearLayout
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:orientation="vertical"
android:layout_weight="3"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:textColor="@color/White"
android:id="@+id/tv_challange_title"
android:textSize="20sp"
android:text="Early-Bird Challange"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<TextView
android:id="@+id/tv_challange_desc"
android:alpha="0.5"
android:textColor="@color/White"
android:textSize="15sp"
android:layout_marginTop="5dp"
android:text="Take 100 steps five times within.. "
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</LinearLayout>
</LinearLayout>
</RelativeLayout>
答案 0 :(得分:8)
我认为你可以用你的活动的java代码来做。
像这样的东西:
android.view.ViewGroup.LayoutParams mParams = imageView.getLayoutParams();
mParams.height = imageView.getWidth();
imageView.setLayoutParams(mParams);
答案 1 :(得分:5)
使用自定义ImageView找到解决方案。 它是最好的解决方案。在自定义ImageView类中将高度设置为与宽度相同。
Java代码:
public class SquareImageView extends ImageView {
public SquareImageView(Context context) {
super(context);
}
public SquareImageView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public SquareImageView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int width = getMeasuredWidth();
setMeasuredDimension(width, width);
}
}
XML代码
<com.mypakage.utils.SquareImageView
android:background="@drawable/fitbit"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
答案 2 :(得分:3)
制作自定义ImageView
,然后将其height
设为width
。
check this answer
答案 3 :(得分:1)
您将 ImageView 的scaleType设置为centerInCrop
android:scaleType="centerInCrop"
答案 4 :(得分:0)
你可以尝试这个,只是给内部线性布局加权
$(document).ready(function() {
$("#mymodalss").click(function(){
//declaring the deferred object in which page will get reloaded/refresh on .done event
var deferredObj = $.Deferred();
deferredObj.done(function(value) {
window.location.reload(true);
});
$.print("#offer",
{
deferred: deferredObj
}
);
});
});
答案 5 :(得分:0)
使用宽度和高度相同的图像(更好.9patch)
<ImageView
android:layout_weight="6"
android:id="@+id/startbtn"
android:textStyle="bold"
android:alpha="0.8"
android:textColor="#fff"
android:text="start"
android:layout_centerInParent="true"
android:layout_width="match_parent"
android:src="@drawable/background_gradient_circular"
android:scaleType="fitCenter"
android:layout_height="match_parent" />