Почему моя программа отображается в bluestack, но не отображается в моем телефоне
Я делаю программу. моя программа полностью работает в bluestacks, но в моем телефоне часть моей программы не работает. эта часть, которая вызвала проблему, диалоговое окно, которое показывает два изображения и одну заметку. Массаж, который показывают в моем телефоне, который выражает причину сбоя:
"К сожалению,(мое имя Progarm's) остановился."
Часть моей программы, которая работает в bluestack и на телефоне, а затем, нажав один пункт, проблема заключается в создании:
public class Introduction_map_Activity extends AppCompatActivity {
final Context context = this;
private TextView title_custom;
private ImageButton imageButton_place;
private ImageButton imageButton_place_map;
private TextView textView_place_information;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.layout_custom_title);
title_custom = (TextView)findViewById(R.id.title_custom);
title_custom.setText(R.string.introduction_map);
setContentView(R.layout.activity_introduction_map);
final Dialog dialog = new Dialog(context);
dialog.setContentView(R.layout.dialog_place_information);
imageButton_place = (ImageButton) dialog.findViewById(R.id.ImageButton_place);
imageButton_place_map = (ImageButton) dialog.findViewById(R.id.ImageButton_place_map);
textView_place_information = (TextView) dialog.findViewById(R.id.TextView_place_information);
ImageView image_seraglio = (ImageView) findViewById(R.id.imageView_seraglio);
TextView text_seraglio = (TextView) findViewById(R.id.textView_seraglio);
ImageView image_veranda = (ImageView) findViewById(R.id.imageView_veranda);
TextView text_veranda = (TextView) findViewById(R.id.textView_veranda);
image_seraglio.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.setTitle(R.string.seraglio_name);
imageButton_place.setImageResource(R.drawable.seraglio_pic);
textView_place_information.setText(R.string.seraglio_information);
imageButton_place_map.setImageResource(R.drawable.seraglio_pic);
dialog.show();
}
});
text_seraglio.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.setTitle(R.string.seraglio_name);
imageButton_place.setImageResource(R.drawable.seraglio_pic);
textView_place_information.setText(R.string.seraglio_information);
imageButton_place_map.setImageResource(R.drawable.seraglio_pic);
dialog.show();
}
});
image_veranda.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.setTitle(R.string.veranda_name);
imageButton_place.setImageResource(R.drawable.seraglio_pic);
textView_place_information.setText(R.string.veranda_information);
imageButton_place_map.setImageResource(R.drawable.seraglio_pic);
dialog.show();
}
});
text_veranda.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
dialog.setTitle(R.string.veranda_name);
imageButton_place.setImageResource(R.drawable.seraglio_pic);
textView_place_information.setText(R.string.veranda_information);
imageButton_place_map.setImageResource(R.drawable.seraglio_pic);
dialog.show();
}
});
макет этой деятельности:
<LinearLayout
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"
tools:context="com.example.rb.musalla.Introduction_map_Activity">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:gravity="right"
android:background="@color/colorAccent">
<ImageView
android:id="@+id/imageView_seraglio"
android:layout_width="74dp"
android:layout_height="match_parent"
android:contentDescription="@string/seraglio_name"
app:srcCompat="@mipmap/ic_launcher" />
<TextView
android:id="@+id/textView_seraglio"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/seraglio_name"
android:textSize="@dimen/_10sdp"
android:gravity="center" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="fill"
android:weightSum="1"
android:background="@color/colorPrimary">
<TextView
android:id="@+id/textView_veranda"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:text="@string/veranda_name"
android:textSize="@dimen/_10sdp"
android:layout_weight="0.9"
android:gravity="center"/>
<ImageView
android:id="@+id/imageView_veranda"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_weight="0.1"
android:src="@mipmap/ic_launcher"
android:contentDescription="@string/veranda_name"/>
</LinearLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
и расположение диалогов:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/_10sdp"
android:background="@color/custom1"
android:orientation="vertical">
<ScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<ImageButton
android:id="@+id/ImageButton_place"
android:layout_width="match_parent"
android:layout_height="@dimen/_100sdp"
android:background="@color/custom1"
android:scaleType="centerInside" />
<TextView
android:id="@+id/TextView_place_information"
android:layout_width="match_parent"
android:layout_height="@dimen/_150sdp"
android:padding="@dimen/_5sdp"/>
<ImageButton
android:id="@+id/ImageButton_place_map"
android:layout_width="match_parent"
android:layout_height="@dimen/_100sdp"
android:background="@color/custom1"
android:scaleType="fitCenter" />
</LinearLayout>
</ScrollView>
</LinearLayout>
Кроме того, мой телефон версии для Android является верхней версии Bluestacks Android.
этот журнал кошка:
03-23 11:19:11.600 580-580/? E/installd: eof 03-23 11: 19: 11.600 580-580 /? E / installd: не удалось прочитать размер
Спасибо за Ваш гид.