2016-10-27 16 views
0

TextView에서 이미지의 크기를 조정하는 데 문제가 있습니다. 아이콘이 표시되지 않습니다. 내 아이콘 크기를 이와 같이, 텍스트로 바꾸기를 원합니다. icon with text 내 코드의 문제점이 무엇인지 알 수 없으므로 표시되지 않습니다. 텍스트가있는 텍스트 뷰의 아이콘 크기 조정 아이콘이 표시되지 않음

public class MyClass extends AppCompatActivity { 
    @Override 
    protected void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.my_layout); 

    TextView txt1 = (TextView) findViewById(R.id.mytxview1); 
    Drawable icon = ContextCompat.getDrawable(this,R.drawable.button_style); 
    icon.setBounds(0, 0, 50, 50); 
    txt1.setCompoundDrawables(icon,null,null,null); 
    } 
} 

사전에 감사 : 여기

<?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="match_parent" 
       android:orientation="vertical"> 


    <LinearLayout 

      android:layout_width="match_parent" 
      android:layout_height="200dp" 
      android:orientation="horizontal" 
      android:background="#eeeeee" android:layout_marginTop="30dp"> 

     <TextView 
       android:id="@+id/mytxview1" 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_marginBottom="5dp" 
       android:layout_marginLeft="2dp" 
       android:layout_marginRight="5dp" 
       android:layout_marginTop="2dp" 
       android:layout_weight="1" 
       android:adjustViewBounds="true" 
       android:padding="30dp" 
       android:scaleType="fitCenter" 
       android:background="@drawable/button1_style" 
       android:drawableTop="@drawable/icon1_48dp" 
       style="@style/Widget.AppCompat.Button.Colored" 
       android:text = "Button 1" 


     /> 


     <TextView 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_marginBottom="5dp" 
       android:layout_marginLeft="2dp" 
       android:layout_marginRight="5dp" 
       android:layout_marginTop="2dp" 
       android:layout_weight="1" 
       android:adjustViewBounds="true" 
       android:padding="30dp" 
       android:scaleType="fitCenter" 
       style="@style/Widget.AppCompat.Button.Colored" 
       android:background="@drawable/button2_style" 
       android:drawableTop="@drawable/icon2_48dp" 
       android:tint="#ffffff" 
       android:text = "Button 2" 

       /> 

    </LinearLayout> 

    <LinearLayout 
      android:layout_width="match_parent" 
      android:layout_height="200dp" 
      android:orientation="horizontal" 
      android:background="#eeeeee" android:layout_marginBottom="20dp"> 

    <TextView 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_marginBottom="5dp" 
       android:layout_marginLeft="2dp" 
       android:layout_marginRight="5dp" 
       android:layout_marginTop="2dp" 
       android:layout_weight="1" 
       android:adjustViewBounds="true" 
       android:padding="30dp" 
       android:scaleType="fitCenter" 
       style="@style/Widget.AppCompat.Button.Colored" 
       android:drawableTop="@drawable/icon3_48dp" 
       android:background="@drawable/button3_style" 
       android:tint="#ffffff" 
       android:text = "Button 3" 
       /> 

     <TextView 
       android:layout_width="0dp" 
       android:layout_height="match_parent" 
       android:layout_marginBottom="5dp" 
       android:layout_marginLeft="2dp" 
       android:layout_marginRight="5dp" 
       android:layout_marginTop="2dp" 
       android:layout_weight="1" 
       android:adjustViewBounds="true" 
       android:padding="30dp" 
       android:scaleType="fitCenter" 
       style="@style/Widget.AppCompat.Button.Colored" 
       android:drawableTop="@drawable/icon4_48dp" 
       android:background="@drawable/button4_style" 
       android:text = "Button 4" 
       /> 
    </LinearLayout> 

</LinearLayout> 

내가 크기를 조정하는 방법입니다.

+0

내부에''드로어 블 ''로''버튼''을 사용해 볼 수있을 것 같습니까? –

+0

버튼을 누른 다음 android : drawableTop? – jemz

+0

네, 당신은 –

답변

1

시도해보십시오.

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:orientation="vertical" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="@drawable/main_bg"> 

<android.support.v7.widget.Toolbar 
    android:id="@+id/toolbar" 
    android:layout_width="match_parent" 
    android:layout_height="?attr/actionBarSize" 
    android:layout_alignParentTop="true" 
    android:background="@color/colorPrimary" 
    android:elevation="@dimen/toolElvation"> 

    <TextView 
     android:id="@+id/tvHeaderTitle" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:gravity="center" 
     android:text="@string/action_home" 
     android:textColor="@android:color/white" 
     android:textSize="@dimen/textsize_18" 
     android:textStyle="bold" 
     android:typeface="sans" /> 
</android.support.v7.widget.Toolbar> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="0.36" 
    android:orientation="horizontal" 
    android:weightSum="1" 
    android:padding="@dimen/scale_5dp"> 

    <LinearLayout 
     android:layout_width="0dip" 
     android:layout_height="match_parent" 
     android:layout_weight="0.495" 
     android:background="@drawable/bg_with_grayborder" 
     android:gravity="center" 
     android:orientation="vertical" 
     android:padding="@dimen/scale_5dp"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:padding="@dimen/scale_5dp" 
      android:src="@drawable/my_warranty" /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="@dimen/scale_10dp" 
      android:gravity="center" 
      android:padding="@dimen/scale_1dp" 
      android:text="@string/my_warranty" 
      android:textAllCaps="true" 
      android:textColor="@android:color/black" 
      android:textSize="@dimen/textsize_14" 
      android:textStyle="bold" /> 


    </LinearLayout> 

    <View 
     android:layout_width="@dimen/scale_5dp" 
     android:layout_height="match_parent" /> 

    <LinearLayout 
     android:layout_width="0dip" 
     android:layout_height="match_parent" 
     android:layout_weight="0.495" 
     android:gravity="center" 
     android:orientation="vertical" 
     android:padding="@dimen/scale_5dp" 
     android:background="@drawable/bg_with_grayborder"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:padding="@dimen/scale_5dp" 
      android:src="@drawable/my_warranty" /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="@dimen/scale_10dp" 
      android:gravity="center" 
      android:padding="@dimen/scale_1dp" 
      android:text="@string/my_warranty" 
      android:textAllCaps="true" 
      android:textColor="@android:color/black" 
      android:textSize="@dimen/textsize_14" 
      android:textStyle="bold" /> 


    </LinearLayout> 

</LinearLayout> 

<View 
    android:layout_width="match_parent" 
    android:layout_height="@dimen/scale_5dp" /> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="0.36" 
    android:orientation="horizontal" 
    android:weightSum="1" 
    android:padding="@dimen/scale_5dp"> 

    <LinearLayout 
     android:layout_width="0dip" 
     android:layout_height="match_parent" 
     android:layout_weight="0.495" 
     android:background="@drawable/bg_with_grayborder" 
     android:gravity="center" 
     android:orientation="vertical" 
     android:padding="@dimen/scale_5dp"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:padding="@dimen/scale_5dp" 
      android:src="@drawable/my_warranty" /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="@dimen/scale_10dp" 
      android:gravity="center" 
      android:padding="@dimen/scale_1dp" 
      android:text="@string/my_warranty" 
      android:textAllCaps="true" 
      android:textColor="@android:color/black" 
      android:textSize="@dimen/textsize_14" 
      android:textStyle="bold" /> 


    </LinearLayout> 

    <View 
     android:layout_width="@dimen/scale_5dp" 
     android:layout_height="match_parent" /> 

    <LinearLayout 
     android:layout_width="0dip" 
     android:layout_height="match_parent" 
     android:layout_weight="0.495" 
     android:background="@drawable/bg_with_grayborder" 
     android:gravity="center" 
     android:orientation="vertical" 
     android:padding="@dimen/scale_5dp"> 

     <ImageView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:padding="@dimen/scale_5dp" 
      android:src="@drawable/my_warranty" /> 

     <TextView 
      android:layout_width="wrap_content" 
      android:layout_height="wrap_content" 
      android:layout_marginTop="@dimen/scale_10dp" 
      android:gravity="center" 
      android:padding="@dimen/scale_1dp" 
      android:text="@string/my_warranty" 
      android:textAllCaps="true" 
      android:textColor="@android:color/black" 
      android:textSize="@dimen/textsize_14" 
      android:textStyle="bold" /> 


    </LinearLayout> 

</LinearLayout> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="0dp" 
    android:layout_weight="0.26" 
    android:orientation="horizontal" 
    android:weightSum="1" 
    android:padding="@dimen/scale_5dp"> 

    <View 
     android:layout_width="0dip" 
     android:layout_height="match_parent" 
     android:layout_weight="0.15" 
     android:background="@android:color/white"/> 

    <LinearLayout 
     android:id="@+id/lntltProductUse" 
     android:layout_width="0dip" 
     android:layout_height="wrap_content" 
     android:layout_weight="0.70" 
     android:background="@android:color/white" 
     android:orientation="horizontal" 
     android:layout_gravity="center" 
     android:weightSum="1"> 

     <LinearLayout 
      android:layout_width="0dp" 
      android:layout_weight="0.60" 
      android:layout_height="wrap_content" 
      android:orientation="vertical"> 

      <ImageView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:src="@drawable/my_warranty" /> 

      <TextView 
       android:layout_width="wrap_content" 
       android:layout_height="wrap_content" 
       android:layout_marginTop="@dimen/scale_10dp" 
       android:gravity="center" 
       android:padding="@dimen/scale_1dp" 
       android:text="@string/my_warranty" 
       android:textAllCaps="true" 
       android:textColor="@android:color/black" 
       android:textSize="@dimen/textsize_14" 
       android:textStyle="bold" /> 

     </LinearLayout> 


     <TextView 
      android:layout_width="0dp" 
      android:layout_weight="0.40" 
      android:layout_height="wrap_content" 
      android:layout_gravity="center" 
      android:layout_marginTop="@dimen/scale_10dp" 
      android:padding="@dimen/scale_1dp" 
      android:text="@string/my_warranty" 
      android:textAllCaps="true" 
      android:textColor="@android:color/black" 
      android:textSize="@dimen/textsize_14" 
      android:textStyle="bold" 
      /> 

    </LinearLayout> 

    <View 
     android:layout_width="0dip" 
     android:layout_height="match_parent" 
     android:layout_weight="0.15" 
     android:background="@android:color/white"/> 

</LinearLayout> 

</LinearLayout> 

<?xml version="1.0" encoding="utf-8"?> 
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> 

<corners 
    android:bottomLeftRadius="20dip" 
    android:bottomRightRadius="20dip" 
    android:radius="20dip" 
    android:topLeftRadius="20dip" 
    android:topRightRadius="20dip" /> 

<stroke 
    android:color="@color/sub_text" 
    android:width="1dip" /> 

<solid android:color="@android:color/white" /> 
</shape> 

bg_with_grayborder 당신은 <solid android:color="@android:color/white" />에 색상을 사용할 수 있습니다.

+0

내 buttonstyle을 사용할 수 있습니까? – jemz

+0

@jemz 버튼 스타일은 무엇입니까? 또한 내 편집을 확인하십시오. –

+0

어디서 얻을 수 있습니까 @ dimen/toolElvation? – jemz

관련 문제