У меня есть проблема при изменении размера изображения в моем TextView. Он не отображает значок. Я хочу, чтобы мой размер значка был таким и с текстом icon with text Я не знаю, в чем проблема моего кода, почему он не будет отображаться.Изменение размера значка в текстовом режиме с текстом Значок не отображается
<?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>
вот как изменить размер:
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);
}
}
Спасибо заранее.
Я думаю, вы можете попробовать '' Button'' с '' drawable'' внутри? –
кнопка затем android: drawableTop? – jemz
да, вы можете попробовать –